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
Currently you can only get the typed version (haxe.macro.ClassField) which has some context info missing, especially around
?arg = val
arg = val
?arg:Null
?arg:Type
?arg:Null = val
arg:Null = val
arg:Type = val
especially when making a wrapper around a class that keeps the args the same.
And theres also a possibility of halting compilation due to the macro trying to type stuff in a incorrect order.
The text was updated successfully, but these errors were encountered:
Currently you can only get the typed version (haxe.macro.ClassField) which has some context info missing, especially around
?arg = val
arg = val
?arg:Null
?arg:Type
?arg:Null = val
arg:Null = val
arg:Type = val
especially when making a wrapper around a class that keeps the args the same.
And theres also a possibility of halting compilation due to the macro trying to type stuff in a incorrect order.
The text was updated successfully, but these errors were encountered: