--
To post to this group haxe...@googlegroups.com
http://groups.google.com/group/haxelang?hl=en
---
You received this message because you are subscribed to the Google Groups "Haxe" group.
For more options, visit https://groups.google.com/groups/opt_out.
var foo = String;
print("string" is foo); //true
print(1 is foo); //true
I haven't thought to hard about how to handle stuff like this yet though. I assume the other targets have already covered similar issues with some compile time checking and reflection when needed. At this stage though everything is just proof of concept and I'd expect lots of edge cases will need to be handled but hopefully between all the other targets many of the problems have already been solved.
--
To post to this group haxe...@googlegroups.com
http://groups.google.com/group/haxelang?hl=en
---
You received this message because you are subscribed to the Google Groups "Haxe" group.
For more options, visit https://groups.google.com/groups/opt_out.
Ok, I like the idea to generate typescript externs...