Vurv78 / LuaPro

Lua AST toolkit for formatting, deobfuscating*, and tweaking code, in pure lua.
https://vurv78.github.io/LuaPro/web/index.html
GNU General Public License v3.0
15 stars 1 forks source link

Proper string lexing #1

Open Vurv78 opened 2 years ago

Vurv78 commented 2 years ago

Removed proper string lexing with the new nom lexer. Need to reimplement it

Vurv78 commented 2 years ago

Note this will be so much more complex considering regular quote strings can be multiline just like C strings. Not going to bother with this for a while

local x = " \
    test    \
"
Vurv78 commented 2 years ago

Actually the current basic pattern implementation even works with that lol