You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.
TypeScript apparently allows to use keywords as a variable/function name (e.g. declare var class). We should handle haxe keywords somehow. I'm not sure whether @:native is enough for that (e.g. @:native("class") var class_:Dynamic;) or we should generate a property with inline getters/setters (e.g. var class_(get,set):Dynamic; inline function get_class_():Dynamic return untyped this["class"];)
The text was updated successfully, but these errors were encountered:
TypeScript apparently allows to use keywords as a variable/function name (e.g.
declare var class
). We should handle haxe keywords somehow. I'm not sure whether@:native
is enough for that (e.g.@:native("class") var class_:Dynamic;
) or we should generate a property with inline getters/setters (e.g.var class_(get,set):Dynamic; inline function get_class_():Dynamic return untyped this["class"];
)The text was updated successfully, but these errors were encountered: