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
Wondering if there's a way to output raw nim, akin to what untyped __js__ allows for the JS target. Considering this is not a real target, maybe you'd need to create a custom macro method for this?
The text was updated successfully, but these errors were encountered:
I'm not very well-versed in macros, but I guess you could support the following syntax:
untyped__nim__()
I think __nim__ is valid Haxe syntax, you could then interpret it in the macro any way you want. Not sure if untyped is really needed either, but I added it here because it seems to be the convention before magic funcs.
Hey!
Wondering if there's a way to output raw nim, akin to what
untyped __js__
allows for the JS target. Considering this is not a real target, maybe you'd need to create a custom macro method for this?The text was updated successfully, but these errors were encountered: