Oops, didn't mean to check in smushed_action.

This commit is contained in:
Bruce Hill 2018-07-17 17:25:12 -07:00
parent 6afa71d678
commit 77a338c167
6 changed files with 31 additions and 24 deletions

View File

@ -1,7 +1,7 @@
-- Nomsu version 2 -- Nomsu version 2
file (FileChunks): file (FileChunks):
{:curr_indent: ' '* :} {:curr_indent: ' '* :}
("#!" (!"nomsu" [^%nl])* "nomsu" %ws+ "-V" %ws* {:version: ([0-9.]+ -> tonumber) :} [^%nl]*)? ("#!" (!"nomsu" [^%nl])* "nomsu" %ws+ "-V" %ws* {:version: [0-9.]+ :} [^%nl]*)?
comment? blank_lines? comment? blank_lines?
(chunk (nl_nodent chunk_delimeter nl_nodent chunk)*)? (chunk (nl_nodent chunk_delimeter nl_nodent chunk)*)?
blank_lines? blank_lines?
@ -16,7 +16,7 @@ nl_nodent: blank_lines nodent
nl_indent: blank_lines {:curr_indent: indent :} (comment nl_nodent)? nl_indent: blank_lines {:curr_indent: indent :} (comment nl_nodent)?
comment: comment:
"#" (({} {~ [^%nl]* ((%nl (!indent %ws* %nl)*) (indent -> '') [^%nl]*)* ~} %userdata) => add_comment) "#" (({} {~ [^%nl]* (%nl+ (indent -> '') [^%nl]*)* ~} %userdata) => add_comment)
eol_comment: eol_comment:
"#" (({} {[^%nl]*} %userdata) => add_comment) "#" (({} {[^%nl]*} %userdata) => add_comment)

View File

@ -1,7 +1,7 @@
-- Nomsu version 2 -- Nomsu version 2
file (FileChunks): file (FileChunks):
{:curr_indent: ' '* :} {:curr_indent: ' '* :}
("#!" (!"nomsu" [^%nl])* "nomsu" %ws+ "-V" %ws* {:version: ([0-9.]+ -> tonumber) :} [^%nl]*)? ("#!" (!"nomsu" [^%nl])* "nomsu" %ws+ "-V" %ws* {:version: [0-9.]+ :} [^%nl]*)?
comment? blank_lines? comment? blank_lines?
(chunk (nl_nodent section_division nl_nodent chunk)*)? (chunk (nl_nodent section_division nl_nodent chunk)*)?
blank_lines? blank_lines?
@ -16,7 +16,7 @@ nl_nodent: blank_lines nodent
nl_indent: blank_lines {:curr_indent: indent :} (comment nl_nodent)? nl_indent: blank_lines {:curr_indent: indent :} (comment nl_nodent)?
comment: comment:
"#" (({} {~ [^%nl]* ((%nl (!indent %ws* %nl)*) (indent -> '') [^%nl]*)* ~} %userdata) => add_comment) "#" (({} {~ [^%nl]* (%nl+ (indent -> '') [^%nl]*)* ~} %userdata) => add_comment)
eol_comment: eol_comment:
"#" (({} {[^%nl]*} %userdata) => add_comment) "#" (({} {[^%nl]*} %userdata) => add_comment)
@ -27,7 +27,7 @@ inline_block (Block):
chunk (Block): chunk (Block):
statement (nl_nodent statement)* statement (nl_nodent statement)*
indented_block (Block): indented_block (Block):
":" eol nl_indent statement (nl_nodent statement)* ":" eol nl_indent statement (nl_nodent statement)* (%nl (%ws* %nl)* nodent comment)*
statement: (action / expression) (eol / (!! [^%nl]+ -> "Unexpected character while parsing line" !!)) statement: (action / expression) (eol / (!! [^%nl]+ -> "Unexpected character while parsing line" !!))
inline_statement: (inline_action / inline_expression) inline_statement: (inline_action / inline_expression)
@ -62,16 +62,13 @@ index_chain (IndexChain):
-- Actions need either at least 1 word, or at least 2 tokens -- Actions need either at least 1 word, or at least 2 tokens
inline_action (Action): inline_action (Action):
!section_division !section_division
( ((smushed_action / inline_expression) (%ws* (smushed_action / inline_expression / word))+) ( (inline_expression (%ws* (inline_expression / word))+)
/ (word (%ws* (smushed_action / inline_expression / word))*)) / (word (%ws* (inline_expression / word))*))
(%ws* inline_block)? (%ws* inline_block)?
action (Action): action (Action):
!section_division !section_division
( ((smushed_action / expression) ((nl_nodent "..")? %ws* (smushed_action / expression / word))+) ( (expression ((nl_nodent "..")? %ws* (expression / word))+)
/ (word ((nl_nodent "..")? %ws* (smushed_action / expression / word))*)) / (word ((nl_nodent "..")? %ws* (expression / word))*))
smushed_action (Action):
!section_division
(index_chain / noindex_inline_expression / word+) (index_chain / noindex_inline_expression / word+ / "(" %ws* ")")+
word: !number { %operator_char+ / %ident_char+ } word: !number { %operator_char+ / %ident_char+ }

View File

@ -94,7 +94,11 @@ local _list_mt = {
__lt = function(self, other) __lt = function(self, other)
assert(type(self) == 'table' and type(other) == 'table', "Incompatible types for comparison") assert(type(self) == 'table' and type(other) == 'table', "Incompatible types for comparison")
for i = 1, math.max(#self, #other) do for i = 1, math.max(#self, #other) do
if self[i] < other[i] then if not self[i] and other[i] then
return true
elseif self[i] and not other[i] then
return false
elseif self[i] < other[i] then
return true return true
elseif self[i] > other[i] then elseif self[i] > other[i] then
return false return false
@ -105,7 +109,11 @@ local _list_mt = {
__le = function(self, other) __le = function(self, other)
assert(type(self) == 'table' and type(other) == 'table', "Incompatible types for comparison") assert(type(self) == 'table' and type(other) == 'table', "Incompatible types for comparison")
for i = 1, math.max(#self, #other) do for i = 1, math.max(#self, #other) do
if self[i] < other[i] then if not self[i] and other[i] then
return true
elseif self[i] and not other[i] then
return false
elseif self[i] < other[i] then
return true return true
elseif self[i] > other[i] then elseif self[i] > other[i] then
return false return false

View File

@ -71,13 +71,17 @@ _list_mt =
__lt: (other)=> __lt: (other)=>
assert type(@) == 'table' and type(other) == 'table', "Incompatible types for comparison" assert type(@) == 'table' and type(other) == 'table', "Incompatible types for comparison"
for i=1,math.max(#@, #other) for i=1,math.max(#@, #other)
if @[i] < other[i] then return true if not @[i] and other[i] then return true
elseif @[i] and not other[i] then return false
elseif @[i] < other[i] then return true
elseif @[i] > other[i] then return false elseif @[i] > other[i] then return false
return false return false
__le: (other)=> __le: (other)=>
assert type(@) == 'table' and type(other) == 'table', "Incompatible types for comparison" assert type(@) == 'table' and type(other) == 'table', "Incompatible types for comparison"
for i=1,math.max(#@, #other) for i=1,math.max(#@, #other)
if @[i] < other[i] then return true if not @[i] and other[i] then return true
elseif @[i] and not other[i] then return false
elseif @[i] < other[i] then return true
elseif @[i] > other[i] then return false elseif @[i] > other[i] then return false
return true return true

View File

@ -151,13 +151,13 @@ Parser.parse = function(nomsu_code, source, version)
source = source or nomsu_code.source source = source or nomsu_code.source
nomsu_code = tostring(nomsu_code) nomsu_code = tostring(nomsu_code)
version = version or nomsu_code:match("^#![^\n]*nomsu[ ]+-V[ ]*([0-9.]+)") version = version or nomsu_code:match("^#![^\n]*nomsu[ ]+-V[ ]*([0-9.]+)")
version = (version and tonumber(version)) or Parser.version local syntax_version = version and tonumber(version:match("^[0-9]+")) or Parser.version
local userdata = { local userdata = {
errors = { }, errors = { },
source = source, source = source,
comments = { } comments = { }
} }
local tree = Parser.patterns[version]:match(nomsu_code, nil, userdata) local tree = Parser.patterns[syntax_version]:match(nomsu_code, nil, userdata)
if not (tree) then if not (tree) then
error("In file " .. tostring(colored.blue(tostring(source or "<unknown>"))) .. " failed to parse:\n" .. tostring(colored.onyellow(colored.black(nomsu_code)))) error("In file " .. tostring(colored.blue(tostring(source or "<unknown>"))) .. " failed to parse:\n" .. tostring(colored.onyellow(colored.black(nomsu_code))))
end end
@ -187,7 +187,7 @@ Parser.parse = function(nomsu_code, source, version)
end end
errors = _accum_0 errors = _accum_0
end end
error("Errors occurred while parsing (v" .. tostring(version) .. "):\n\n" .. table.concat(errors, "\n\n"), 0) error("Errors occurred while parsing (v" .. tostring(syntax_version) .. "):\n\n" .. table.concat(errors, "\n\n"), 0)
end end
local comments local comments
do do
@ -226,7 +226,6 @@ Parser.parse = function(nomsu_code, source, version)
end end
end end
walk_tree(tree) walk_tree(tree)
tree.version = userdata.version
return tree return tree
end end
Parser.is_operator = function(s) Parser.is_operator = function(s)

View File

@ -103,11 +103,11 @@ Parser.parse = (nomsu_code, source=nil, version=nil)->
source or= nomsu_code.source source or= nomsu_code.source
nomsu_code = tostring(nomsu_code) nomsu_code = tostring(nomsu_code)
version or= nomsu_code\match("^#![^\n]*nomsu[ ]+-V[ ]*([0-9.]+)") version or= nomsu_code\match("^#![^\n]*nomsu[ ]+-V[ ]*([0-9.]+)")
version = (version and tonumber(version)) or Parser.version syntax_version = version and tonumber(version\match("^[0-9]+")) or Parser.version
userdata = { userdata = {
errors: {}, :source, comments: {} errors: {}, :source, comments: {}
} }
tree = Parser.patterns[version]\match(nomsu_code, nil, userdata) tree = Parser.patterns[syntax_version]\match(nomsu_code, nil, userdata)
unless tree unless tree
error "In file #{colored.blue tostring(source or "<unknown>")} failed to parse:\n#{colored.onyellow colored.black nomsu_code}" error "In file #{colored.blue tostring(source or "<unknown>")} failed to parse:\n#{colored.onyellow colored.black nomsu_code}"
if type(tree) == 'number' if type(tree) == 'number'
@ -117,7 +117,7 @@ Parser.parse = (nomsu_code, source=nil, version=nil)->
keys = [k for k,v in pairs(userdata.errors)] keys = [k for k,v in pairs(userdata.errors)]
table.sort(keys) table.sort(keys)
errors = [userdata.errors[k] for k in *keys] errors = [userdata.errors[k] for k in *keys]
error("Errors occurred while parsing (v#{version}):\n\n"..table.concat(errors, "\n\n"), 0) error("Errors occurred while parsing (v#{syntax_version}):\n\n"..table.concat(errors, "\n\n"), 0)
comments = [{comment:c, pos:p} for p,c in pairs(userdata.comments)] comments = [{comment:c, pos:p} for p,c in pairs(userdata.comments)]
-- Sort in descending order so we can pop the first comments off the end one at a time -- Sort in descending order so we can pop the first comments off the end one at a time
@ -136,7 +136,6 @@ Parser.parse = (nomsu_code, source=nil, version=nil)->
t.comments = comment_buff if #comment_buff > 0 t.comments = comment_buff if #comment_buff > 0
walk_tree tree walk_tree tree
tree.version = userdata.version
return tree return tree
Parser.is_operator = (s)-> Parser.is_operator = (s)->