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
I need to call an extern Lua function which expects a table with very specific fields and does not allow any additional fields. I have the function declared as such:
I need to call an extern Lua function which expects a table with very specific fields and does not allow any additional fields. I have the function declared as such:
When this function is invoked as
Foo.bar({ baz: 42; })
, this generates some pretty complex Lua code which ends up passingIt would be great if there was a way to write an expression that results in plain
{ baz = 42 }
in Haxe.As a workaround, this seems to work:
The text was updated successfully, but these errors were encountered: