Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chexiongsheng/lua-checker

Automatically exported from code.google.com/p/lua-checker
https://github.com/chexiongsheng/lua-checker

Last synced: 11 days ago
JSON representation

Automatically exported from code.google.com/p/lua-checker

Awesome Lists containing this project

README

        

Eventually I will write some real documentation, for now here are a few
notes.

* No free()ing of heap allocated objects, since that's a pain and it's
not necessary in this case because the amount of data allocated is
proportional to the size of the (generally small) lua program that
is parsed.

* "dofile 'filename'" statements expanded inline at global scope. other
dofiles (e.g. in expressions or inner scope) are not expanded since
they might be conditional.