Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/chexiongsheng/lua-checker
- Owner: chexiongsheng
- License: other
- Created: 2015-03-18T09:03:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-18T09:05:42.000Z (over 9 years ago)
- Last Synced: 2024-10-11T09:54:13.076Z (about 1 month ago)
- Language: Bison
- Size: 156 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.txt
- License: COPYING
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.