diff options
author | Pavel Labath <pavelo@centrum.sk> | 2011-05-16 10:58:21 (GMT) |
---|---|---|
committer | Pavel Labath <pavelo@centrum.sk> | 2011-11-01 09:52:45 (GMT) |
commit | 3c1d7bb1c521e824dfa46903fd4014722d0f5a29 (patch) | |
tree | b9d8ab1f95aa608cbef817550ccc4bd42534dcd6 /libs/lua/test/globals.lua | |
parent | 2223c879bf41d2b4f40fa43db478ba1bce8523de (diff) | |
download | fluxbox_pavel-3c1d7bb1c521e824dfa46903fd4014722d0f5a29.zip fluxbox_pavel-3c1d7bb1c521e824dfa46903fd4014722d0f5a29.tar.bz2 |
Add lua as an internal library in libs/lua
Diffstat (limited to 'libs/lua/test/globals.lua')
-rw-r--r-- | libs/lua/test/globals.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libs/lua/test/globals.lua b/libs/lua/test/globals.lua new file mode 100644 index 0000000..d4c20e1 --- /dev/null +++ b/libs/lua/test/globals.lua | |||
@@ -0,0 +1,13 @@ | |||
1 | -- reads luac listings and reports global variable usage | ||
2 | -- lines where a global is written to are marked with "*" | ||
3 | -- typical usage: luac -p -l file.lua | lua globals.lua | sort | lua table.lua | ||
4 | |||
5 | while 1 do | ||
6 | local s=io.read() | ||
7 | if s==nil then break end | ||
8 | local ok,_,l,op,g=string.find(s,"%[%-?(%d*)%]%s*([GS])ETGLOBAL.-;%s+(.*)$") | ||
9 | if ok then | ||
10 | if op=="S" then op="*" else op="" end | ||
11 | io.write(g,"\t",l,op,"\n") | ||
12 | end | ||
13 | end | ||