Minor optimizations.
This commit is contained in:
parent
95ee15982b
commit
7410e42bc0
35
code_obj.lua
35
code_obj.lua
@ -151,10 +151,26 @@ do
|
|||||||
_class_0 = setmetatable({
|
_class_0 = setmetatable({
|
||||||
__init = function(self, source, ...)
|
__init = function(self, source, ...)
|
||||||
self.source = source
|
self.source = source
|
||||||
self.indents = { }
|
|
||||||
self.bits = {
|
self.bits = {
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
|
local indent, indents = 0, { }
|
||||||
|
local match = string.match
|
||||||
|
for i, b in ipairs(self.bits) do
|
||||||
|
if type(b) == 'string' then
|
||||||
|
do
|
||||||
|
local spaces = match(b, "\n([ ]*)[^\n]*$")
|
||||||
|
if spaces then
|
||||||
|
indent = #spaces
|
||||||
|
end
|
||||||
|
end
|
||||||
|
elseif indent ~= 0 then
|
||||||
|
indents[i] = indent
|
||||||
|
end
|
||||||
|
end
|
||||||
|
self.current_indent = indent
|
||||||
|
self.indents = indents
|
||||||
|
self.__str = nil
|
||||||
if type(self.source) == 'string' then
|
if type(self.source) == 'string' then
|
||||||
local filename, start, stop = self.source:match("^(.-)%[(%d+):(%d+)%]$")
|
local filename, start, stop = self.source:match("^(.-)%[(%d+):(%d+)%]$")
|
||||||
if not (filename) then
|
if not (filename) then
|
||||||
@ -166,23 +182,6 @@ do
|
|||||||
self.source = Source(self.source, 1, #tostring(self) + 1)
|
self.source = Source(self.source, 1, #tostring(self) + 1)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
assert(self.source == nil or Source:is_instance(self.source))
|
|
||||||
local indent = 0
|
|
||||||
for i, b in ipairs(self.bits) do
|
|
||||||
assert(not Source:is_instance(b))
|
|
||||||
if type(b) == 'string' then
|
|
||||||
do
|
|
||||||
local spaces = b:match("\n([ ]*)[^\n]*$")
|
|
||||||
if spaces then
|
|
||||||
indent = #spaces
|
|
||||||
end
|
|
||||||
end
|
|
||||||
elseif indent ~= 0 then
|
|
||||||
self.indents[i] = indent
|
|
||||||
end
|
|
||||||
end
|
|
||||||
self.current_indent = indent
|
|
||||||
self.__str = nil
|
|
||||||
end,
|
end,
|
||||||
__base = _base_0,
|
__base = _base_0,
|
||||||
__name = "Code"
|
__name = "Code"
|
||||||
|
@ -62,8 +62,18 @@ Source = immutable {"filename","start","stop"}, {
|
|||||||
|
|
||||||
class Code
|
class Code
|
||||||
new: (@source, ...)=>
|
new: (@source, ...)=>
|
||||||
@indents = {}
|
|
||||||
@bits = {...}
|
@bits = {...}
|
||||||
|
indent, indents = 0, {}
|
||||||
|
match = string.match
|
||||||
|
for i,b in ipairs @bits
|
||||||
|
if type(b) == 'string'
|
||||||
|
if spaces = match(b, "\n([ ]*)[^\n]*$")
|
||||||
|
indent = #spaces
|
||||||
|
elseif indent != 0
|
||||||
|
indents[i] = indent
|
||||||
|
@current_indent = indent
|
||||||
|
@indents = indents
|
||||||
|
@__str = nil
|
||||||
if type(@source) == 'string'
|
if type(@source) == 'string'
|
||||||
filename,start,stop = @source\match("^(.-)%[(%d+):(%d+)%]$")
|
filename,start,stop = @source\match("^(.-)%[(%d+):(%d+)%]$")
|
||||||
unless filename
|
unless filename
|
||||||
@ -72,17 +82,6 @@ class Code
|
|||||||
@source = Source(filename, tonumber(start), tonumber(stop))
|
@source = Source(filename, tonumber(start), tonumber(stop))
|
||||||
else
|
else
|
||||||
@source = Source(@source, 1, #tostring(self)+1)
|
@source = Source(@source, 1, #tostring(self)+1)
|
||||||
assert(@source == nil or Source\is_instance(@source))
|
|
||||||
indent = 0
|
|
||||||
for i,b in ipairs @bits
|
|
||||||
assert(not Source\is_instance(b))
|
|
||||||
if type(b) == 'string'
|
|
||||||
if spaces = b\match("\n([ ]*)[^\n]*$")
|
|
||||||
indent = #spaces
|
|
||||||
elseif indent != 0
|
|
||||||
@indents[i] = indent
|
|
||||||
@current_indent = indent
|
|
||||||
@__str = nil
|
|
||||||
|
|
||||||
sub: (start,stop)=>
|
sub: (start,stop)=>
|
||||||
-- TODO: implement this better
|
-- TODO: implement this better
|
||||||
|
20
nomsu.lua
20
nomsu.lua
@ -131,12 +131,14 @@ do
|
|||||||
return self .. stringify(other)
|
return self .. stringify(other)
|
||||||
end
|
end
|
||||||
STRING_METATABLE.__index = function(self, i)
|
STRING_METATABLE.__index = function(self, i)
|
||||||
|
local ret = string[i]
|
||||||
|
if ret ~= nil then
|
||||||
|
return ret
|
||||||
|
end
|
||||||
if type(i) == 'number' then
|
if type(i) == 'number' then
|
||||||
return string.sub(self, i, i)
|
return string.sub(self, i, i)
|
||||||
elseif type(i) == 'table' then
|
elseif type(i) == 'table' then
|
||||||
return string.sub(self, i[1], i[2])
|
return string.sub(self, i[1], i[2])
|
||||||
else
|
|
||||||
return string[i]
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -1103,12 +1105,14 @@ OPTIONS
|
|||||||
print_err_msg(error_message)
|
print_err_msg(error_message)
|
||||||
return os.exit(false, true)
|
return os.exit(false, true)
|
||||||
end
|
end
|
||||||
local ldt
|
do
|
||||||
ok, ldt = pcall(require, 'ldt')
|
local ldt
|
||||||
if ok then
|
ok, ldt = pcall(require, 'ldt')
|
||||||
ldt.guard(run)
|
if ok then
|
||||||
else
|
ldt.guard(run)
|
||||||
xpcall(run, err_hand)
|
else
|
||||||
|
xpcall(run, err_hand)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return NomsuCompiler
|
return NomsuCompiler
|
||||||
|
21
nomsu.moon
21
nomsu.moon
@ -120,11 +120,10 @@ do
|
|||||||
STRING_METATABLE = getmetatable("")
|
STRING_METATABLE = getmetatable("")
|
||||||
STRING_METATABLE.__add = (other)=> @ .. stringify(other)
|
STRING_METATABLE.__add = (other)=> @ .. stringify(other)
|
||||||
STRING_METATABLE.__index = (i)=>
|
STRING_METATABLE.__index = (i)=>
|
||||||
|
ret = string[i]
|
||||||
|
if ret != nil then return ret
|
||||||
if type(i) == 'number' then return string.sub(@, i, i)
|
if type(i) == 'number' then return string.sub(@, i, i)
|
||||||
elseif type(i) == 'table' then return string.sub(@, i[1], i[2])
|
elseif type(i) == 'table' then return string.sub(@, i[1], i[2])
|
||||||
else return string[i]
|
|
||||||
-- Can't use this because it breaks some LPEG stuff
|
|
||||||
--STRING_METATABLE.__mul = (other)=> string.rep(@, other)
|
|
||||||
|
|
||||||
Types = require "nomsu_tree"
|
Types = require "nomsu_tree"
|
||||||
|
|
||||||
@ -309,6 +308,7 @@ class NomsuCompiler
|
|||||||
define_compile_action: (signature, fn)=>
|
define_compile_action: (signature, fn)=>
|
||||||
return @define_action(signature, fn, true)
|
return @define_action(signature, fn, true)
|
||||||
|
|
||||||
|
_nomsu_chunk_counter = 0
|
||||||
parse: (nomsu_code)=>
|
parse: (nomsu_code)=>
|
||||||
if type(nomsu_code) == 'string'
|
if type(nomsu_code) == 'string'
|
||||||
_nomsu_chunk_counter += 1
|
_nomsu_chunk_counter += 1
|
||||||
@ -333,7 +333,6 @@ class NomsuCompiler
|
|||||||
|
|
||||||
return tree
|
return tree
|
||||||
|
|
||||||
_nomsu_chunk_counter = 0
|
|
||||||
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)
|
||||||
@ -788,13 +787,11 @@ OPTIONS
|
|||||||
-- for both APIs
|
-- for both APIs
|
||||||
-- TODO: revert back to old error handler
|
-- TODO: revert back to old error handler
|
||||||
|
|
||||||
--ProFi = require 'ProFi'
|
--require('ProFi')\profile "scratch/profile.txt", (profi)->
|
||||||
--ProFi\start()
|
do
|
||||||
ok, ldt = pcall(require,'ldt')
|
ok, ldt = pcall(require,'ldt')
|
||||||
if ok
|
if ok
|
||||||
ldt.guard run
|
ldt.guard run
|
||||||
else xpcall(run, err_hand)
|
else xpcall(run, err_hand)
|
||||||
--ProFi\stop()
|
|
||||||
--ProFi\writeReport( 'MyProfilingReport.txt' )
|
|
||||||
|
|
||||||
return NomsuCompiler
|
return NomsuCompiler
|
||||||
|
Loading…
Reference in New Issue
Block a user