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
Defold has a problem parsing go.property calls that are spread across multiple lines.
See: defold/defold#3342
If we make a call to a function, with another function call nested in tstl, the result is a multi-line expansion. They do this for better sourceMap support as there can only be one error per line. In order to work around this limitation the printer would need to be overriden in the printExpressionList method here: https://github.com/TypeScriptToLua/TypeScriptToLua/blob/master/src/LuaPrinter.ts#L744
The text was updated successfully, but these errors were encountered:
Defold has a problem parsing
go.property
calls that are spread across multiple lines.See: defold/defold#3342
If we make a call to a function, with another function call nested in tstl, the result is a multi-line expansion. They do this for better sourceMap support as there can only be one error per line. In order to work around this limitation the printer would need to be overriden in the
printExpressionList
method here:https://github.com/TypeScriptToLua/TypeScriptToLua/blob/master/src/LuaPrinter.ts#L744
The text was updated successfully, but these errors were encountered: