-
Notifications
You must be signed in to change notification settings - Fork 48
Closed
Description
Example code:
local Table = {"a", "b", "c"};
I have used ast.to_lua_source for turning the ast into a lua code
The output i got:
local Table = {
1 = "a",
2 = "b",
3 = "c",
}
;
What it should be:
local Table = {
[1] = "a",
[2] = "b",
[3] = "c",
}
;
Used python code:
from luaparser import ast
src = """
local Table = {"a", "b", "c"};
"""
tree = ast.parse(src)
print(ast.to_lua_source(tree))
MikeMihailov and uniquadev
Metadata
Metadata
Assignees
Labels
No labels