diff options
author | Mike Pall <mike> | 2013-05-16 20:34:34 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2013-05-16 20:34:34 +0200 |
commit | fe8773677753040345afa2c2d708fe5ea8068c8e (patch) | |
tree | d4078f02a49227468543c800b450014ca46c0913 /src/jit/bc.lua | |
parent | 647cc4613f3acd5ec8785920102af22b85cf2b9c (diff) | |
download | luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.tar.gz luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.tar.bz2 luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.zip |
Get rid of module() in all internal modules.
Diffstat (limited to 'src/jit/bc.lua')
-rw-r--r-- | src/jit/bc.lua | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/jit/bc.lua b/src/jit/bc.lua index dd1c1f3b..566b09c3 100644 --- a/src/jit/bc.lua +++ b/src/jit/bc.lua | |||
@@ -179,13 +179,12 @@ local function bcliston(outfile) | |||
179 | end | 179 | end |
180 | 180 | ||
181 | -- Public module functions. | 181 | -- Public module functions. |
182 | module(...) | 182 | return { |
183 | 183 | line = bcline, | |
184 | line = bcline | 184 | dump = bcdump, |
185 | dump = bcdump | 185 | targets = bctargets, |
186 | targets = bctargets | 186 | on = bcliston, |
187 | 187 | off = bclistoff, | |
188 | on = bcliston | 188 | start = bcliston -- For -j command line option. |
189 | off = bclistoff | 189 | } |
190 | start = bcliston -- For -j command line option. | ||
191 | 190 | ||