py-lua-parser icon indicating copy to clipboard operation
py-lua-parser copied to clipboard

A Lua parser and AST builder written in Python.

Results 23 py-lua-parser issues
Sort by recently updated
recently updated
newest added

Hello, Thank you for your work and great product you maintain for a lot of users like me! I get some code that started to fail after upgrading to v...

Support for replacing the current node during Visitor traversal. --- While using it, I wanted to edit the tree to deobfuscate Lua code, but it seems editing functionality is not...

Hello, Given the lua source code below: ```lua local mytable = {} mytable.windows = 2 mytable.linux = 3 ``` I am trying to remove this assignment (`mytable.linux = 3`) from...