Cleaned up some asserts for performance.
This commit is contained in:
parent
b6be516e3f
commit
e17822d1e5
13
code_obj.lua
13
code_obj.lua
@ -15,10 +15,8 @@ Source = immutable({
|
|||||||
if not start then
|
if not start then
|
||||||
start, stop = 1, #FILE_CACHE[filename]
|
start, stop = 1, #FILE_CACHE[filename]
|
||||||
end
|
end
|
||||||
if stop then
|
if stop and start > stop + 1 then
|
||||||
assert(start <= stop + 1, "Invalid range: " .. tostring(start) .. ", " .. tostring(stop))
|
error("Invalid range: " .. tostring(start) .. ", " .. tostring(stop))
|
||||||
else
|
|
||||||
error("HUH?")
|
|
||||||
end
|
end
|
||||||
return filename, start, stop
|
return filename, start, stop
|
||||||
end,
|
end,
|
||||||
@ -56,7 +54,9 @@ Source = immutable({
|
|||||||
if type(self) == 'number' then
|
if type(self) == 'number' then
|
||||||
offset, self = self, offset
|
offset, self = self, offset
|
||||||
else
|
else
|
||||||
assert(type(offset) == 'number', "Cannot add Source and " .. tostring(type(offset)))
|
if type(offset) ~= 'number' then
|
||||||
|
error("Cannot add Source and " .. tostring(type(offset)))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
return Source(self.filename, self.start + offset, self.stop)
|
return Source(self.filename, self.start + offset, self.stop)
|
||||||
end,
|
end,
|
||||||
@ -109,8 +109,6 @@ do
|
|||||||
local match = string.match
|
local match = string.match
|
||||||
for i = 1, n do
|
for i = 1, n do
|
||||||
local b = select(i, ...)
|
local b = select(i, ...)
|
||||||
assert(b ~= self, "No recursion please.")
|
|
||||||
assert(not Source:is_instance(b))
|
|
||||||
bits[#bits + 1] = b
|
bits[#bits + 1] = b
|
||||||
if type(b) == 'string' then
|
if type(b) == 'string' then
|
||||||
do
|
do
|
||||||
@ -136,7 +134,6 @@ do
|
|||||||
end
|
end
|
||||||
self.current_indent = 0
|
self.current_indent = 0
|
||||||
for i, b in ipairs(bits) do
|
for i, b in ipairs(bits) do
|
||||||
assert(b ~= self, "No recursion please.")
|
|
||||||
if type(b) == 'string' then
|
if type(b) == 'string' then
|
||||||
do
|
do
|
||||||
local spaces = b:match("\n([ ]*)[^\n]*$")
|
local spaces = b:match("\n([ ]*)[^\n]*$")
|
||||||
|
@ -8,8 +8,7 @@ Source = immutable {"filename","start","stop"}, {
|
|||||||
__new: (filename, start, stop)=>
|
__new: (filename, start, stop)=>
|
||||||
if not start
|
if not start
|
||||||
start, stop = 1, #FILE_CACHE[filename]
|
start, stop = 1, #FILE_CACHE[filename]
|
||||||
if stop then assert(start <= stop+1, "Invalid range: #{start}, #{stop}")
|
if stop and start > stop+1 then error("Invalid range: #{start}, #{stop}")
|
||||||
else error("HUH?")
|
|
||||||
return filename, start, stop
|
return filename, start, stop
|
||||||
from_string: (str)=>
|
from_string: (str)=>
|
||||||
filename,start,stop = str\match("^(.-)%[(%d+):(%d+)%]$")
|
filename,start,stop = str\match("^(.-)%[(%d+):(%d+)%]$")
|
||||||
@ -34,7 +33,7 @@ Source = immutable {"filename","start","stop"}, {
|
|||||||
__add: (offset)=>
|
__add: (offset)=>
|
||||||
if type(self) == 'number'
|
if type(self) == 'number'
|
||||||
offset, self = self, offset
|
offset, self = self, offset
|
||||||
else assert(type(offset) == 'number', "Cannot add Source and #{type(offset)}")
|
else if type(offset) != 'number' then error("Cannot add Source and #{type(offset)}")
|
||||||
return Source(@filename, @start+offset, @stop)
|
return Source(@filename, @start+offset, @stop)
|
||||||
sub: (start, stop)=>
|
sub: (start, stop)=>
|
||||||
start or= 1
|
start or= 1
|
||||||
@ -80,8 +79,6 @@ class Code
|
|||||||
match = string.match
|
match = string.match
|
||||||
for i=1,n
|
for i=1,n
|
||||||
b = select(i, ...)
|
b = select(i, ...)
|
||||||
assert(b != self, "No recursion please.")
|
|
||||||
assert(not Source\is_instance(b))
|
|
||||||
bits[#bits+1] = b
|
bits[#bits+1] = b
|
||||||
if type(b) == 'string'
|
if type(b) == 'string'
|
||||||
if spaces = match(b, "\n([ ]*)[^\n]*$")
|
if spaces = match(b, "\n([ ]*)[^\n]*$")
|
||||||
@ -99,7 +96,6 @@ class Code
|
|||||||
bits[i] = select(i, ...)
|
bits[i] = select(i, ...)
|
||||||
@current_indent = 0
|
@current_indent = 0
|
||||||
for i,b in ipairs(bits)
|
for i,b in ipairs(bits)
|
||||||
assert(b != self, "No recursion please.")
|
|
||||||
if type(b) == 'string'
|
if type(b) == 'string'
|
||||||
if spaces = b\match("\n([ ]*)[^\n]*$")
|
if spaces = b\match("\n([ ]*)[^\n]*$")
|
||||||
@current_indent = #spaces
|
@current_indent = #spaces
|
||||||
|
10
nomsu.lua
10
nomsu.lua
@ -1,7 +1,7 @@
|
|||||||
local _pairs, _ipairs = pairs, ipairs
|
local _pairs, _ipairs = pairs, ipairs
|
||||||
if jit then
|
if jit then
|
||||||
package.cpath = "./luajit_lpeg/?.so;" .. package.cpath
|
package.cpath = "./luajit_lpeg/?.so;" .. package.cpath
|
||||||
lpeg = require("lpeglj")
|
lpeg = require('lpeg')
|
||||||
bit32 = require('bit')
|
bit32 = require('bit')
|
||||||
pairs = function(x)
|
pairs = function(x)
|
||||||
do
|
do
|
||||||
@ -269,7 +269,9 @@ do
|
|||||||
if is_compile_action == nil then
|
if is_compile_action == nil then
|
||||||
is_compile_action = false
|
is_compile_action = false
|
||||||
end
|
end
|
||||||
assert(type(fn) == 'function', "Bad fn: " .. tostring(repr(fn)))
|
if type(fn) ~= 'function' then
|
||||||
|
error("Not a function: " .. tostring(repr(fn)))
|
||||||
|
end
|
||||||
if type(signature) == 'string' then
|
if type(signature) == 'string' then
|
||||||
signature = {
|
signature = {
|
||||||
signature
|
signature
|
||||||
@ -354,7 +356,9 @@ do
|
|||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
local tree = self:parse(nomsu_code)
|
local tree = self:parse(nomsu_code)
|
||||||
assert(tree, "Failed to parse: " .. tostring(nomsu_code))
|
if not (tree) then
|
||||||
|
error("Failed to parse: " .. tostring(nomsu_code))
|
||||||
|
end
|
||||||
local lua = self:tree_to_lua(tree):as_statements()
|
local lua = self:tree_to_lua(tree):as_statements()
|
||||||
lua:declare_locals()
|
lua:declare_locals()
|
||||||
lua:prepend("-- File: " .. tostring(nomsu_code.source or "") .. "\n")
|
lua:prepend("-- File: " .. tostring(nomsu_code.source or "") .. "\n")
|
||||||
|
@ -15,7 +15,8 @@ _pairs, _ipairs = pairs, ipairs
|
|||||||
if jit
|
if jit
|
||||||
package.cpath = "./luajit_lpeg/?.so;"..package.cpath
|
package.cpath = "./luajit_lpeg/?.so;"..package.cpath
|
||||||
--package.path = "./LPegLJ/src/?.lua;"..package.path
|
--package.path = "./LPegLJ/src/?.lua;"..package.path
|
||||||
lpeg = require "lpeglj"
|
--lpeg = require "lpeglj"
|
||||||
|
lpeg = require 'lpeg'
|
||||||
|
|
||||||
export bit32
|
export bit32
|
||||||
bit32 = require('bit')
|
bit32 = require('bit')
|
||||||
@ -302,7 +303,8 @@ class NomsuCompiler
|
|||||||
]=], stub_defs
|
]=], stub_defs
|
||||||
var_pattern = re.compile "{| %space ((('%' {%varname}) / %word) %space)+ |}", stub_defs
|
var_pattern = re.compile "{| %space ((('%' {%varname}) / %word) %space)+ |}", stub_defs
|
||||||
define_action: (signature, fn, is_compile_action=false)=>
|
define_action: (signature, fn, is_compile_action=false)=>
|
||||||
assert(type(fn) == 'function', "Bad fn: #{repr fn}")
|
if type(fn) != 'function'
|
||||||
|
error("Not a function: #{repr fn}")
|
||||||
if type(signature) == 'string'
|
if type(signature) == 'string'
|
||||||
signature = {signature}
|
signature = {signature}
|
||||||
elseif type(signature) != 'table'
|
elseif type(signature) != 'table'
|
||||||
@ -350,7 +352,8 @@ class NomsuCompiler
|
|||||||
run: (nomsu_code, compile_fn=nil)=>
|
run: (nomsu_code, compile_fn=nil)=>
|
||||||
if #tostring(nomsu_code) == 0 then return nil
|
if #tostring(nomsu_code) == 0 then return nil
|
||||||
tree = @parse(nomsu_code)
|
tree = @parse(nomsu_code)
|
||||||
assert tree, "Failed to parse: #{nomsu_code}"
|
unless tree
|
||||||
|
error "Failed to parse: #{nomsu_code}"
|
||||||
lua = @tree_to_lua(tree)\as_statements!
|
lua = @tree_to_lua(tree)\as_statements!
|
||||||
lua\declare_locals!
|
lua\declare_locals!
|
||||||
lua\prepend "-- File: #{nomsu_code.source or ""}\n"
|
lua\prepend "-- File: #{nomsu_code.source or ""}\n"
|
||||||
|
@ -38,9 +38,6 @@ Tree = function(name, kind, methods)
|
|||||||
if not (next(fn)) then
|
if not (next(fn)) then
|
||||||
return self
|
return self
|
||||||
end
|
end
|
||||||
if type(next(fn)) == 'string' then
|
|
||||||
error("SHIT")
|
|
||||||
end
|
|
||||||
local _replacements = fn
|
local _replacements = fn
|
||||||
fn = function(k)
|
fn = function(k)
|
||||||
return _replacements[k]
|
return _replacements[k]
|
||||||
|
@ -29,8 +29,6 @@ Tree = (name, kind, methods)->
|
|||||||
.map = (fn)=>
|
.map = (fn)=>
|
||||||
if type(fn) == 'table'
|
if type(fn) == 'table'
|
||||||
return @ unless next(fn)
|
return @ unless next(fn)
|
||||||
if type(next(fn)) == 'string'
|
|
||||||
error("SHIT")
|
|
||||||
_replacements = fn
|
_replacements = fn
|
||||||
fn = (k)-> _replacements[k]
|
fn = (k)-> _replacements[k]
|
||||||
return @_map(fn)
|
return @_map(fn)
|
||||||
|
Loading…
Reference in New Issue
Block a user