[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Lua lint?
- From: "Josh Martel" <josh@...>
- Date: Mon, 12 Nov 2001 17:29:42 -0600
Is there a utility that does static analysis of lua code? Specifically,
I would like it to point out variables that should be local (only
referenced inside a single chunk/block/scope), variables that are only
referenced once at all (probable misspellings), local variables that
shadow other variables, etc. Essentially, a static debugger to assist
in developing maintainable code in a loosely-typed embedded scripting
language.
/Josh