Open dariajung opened 9 years ago
Something like:
var x = <any>Some_Class; will result in an emit that looks like var x = undefined;
var x = <any>Some_Class;
var x = undefined;
This is likely due to the fact that there is no specific type information associated with an any type.
any
This issue is related to #53.
Possible ways to approach this:
Something like:
var x = <any>Some_Class;
will result in an emit that looks likevar x = undefined;
This is likely due to the fact that there is no specific type information associated with an
any
type.This issue is related to #53.
Possible ways to approach this: