We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The following code:
function foo() { function bar() { console.log(x) } let x: undefined; }
Is transpiled to invalid lua syntax:
function foo(self) local x local function bar(self) print(x) end x = end
Playground link
The following code:
Is transpiled to invalid lua syntax:
Playground link