py-lua-parser
py-lua-parser copied to clipboard
Rendering Some Lua Tables False
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))
The same problem