Overhauling parsing of Blocks (can no longer contain only one statement)
This commit is contained in:
parent
5d59d510cd
commit
4e821308af
@ -261,7 +261,9 @@ immediately
|
|||||||
%fallthroughs <- []
|
%fallthroughs <- []
|
||||||
%is_first <- (yes)
|
%is_first <- (yes)
|
||||||
%seen_else <- (no)
|
%seen_else <- (no)
|
||||||
for %func_call in %body.value
|
%branches <-
|
||||||
|
%body.value if (%body.type = "Block") else [%body]
|
||||||
|
for %func_call in %branches
|
||||||
assume (%func_call.type is "Action") or barf ".."
|
assume (%func_call.type is "Action") or barf ".."
|
||||||
Invalid format for 'when' statement. Only '*' blocks are allowed.
|
Invalid format for 'when' statement. Only '*' blocks are allowed.
|
||||||
%tokens <- %func_call.value
|
%tokens <- %func_call.value
|
||||||
@ -308,7 +310,9 @@ immediately
|
|||||||
%fallthroughs <- []
|
%fallthroughs <- []
|
||||||
%is_first <- (yes)
|
%is_first <- (yes)
|
||||||
%seen_else <- (no)
|
%seen_else <- (no)
|
||||||
for %func_call in %body.value
|
%branches <-
|
||||||
|
%body.value if (%body.type = "Block") else [%body]
|
||||||
|
for %func_call in %branches
|
||||||
assume (%func_call.type is "Action") or barf ".."
|
assume (%func_call.type is "Action") or barf ".."
|
||||||
Invalid format for 'when' statement. Only '*' blocks are allowed.
|
Invalid format for 'when' statement. Only '*' blocks are allowed.
|
||||||
%tokens <- %func_call.value
|
%tokens <- %func_call.value
|
||||||
|
@ -90,6 +90,6 @@ parse [seed random] as: seed random with (=lua "os.time()")
|
|||||||
compile [random number, random, rand] to: Lua value "math.random()"
|
compile [random number, random, rand] to: Lua value "math.random()"
|
||||||
compile [random int %n, random integer %n, randint %n] to: Lua value "math.random(\(%n as lua expr))"
|
compile [random int %n, random integer %n, randint %n] to: Lua value "math.random(\(%n as lua expr))"
|
||||||
compile [random from %low to %high, random number from %low to %high, rand %low %high] to
|
compile [random from %low to %high, random number from %low to %high, rand %low %high] to
|
||||||
"math.random(\(%low as lua expr), \(%high as lua expr))"
|
Lua value "math.random(\(%low as lua expr), \(%high as lua expr))"
|
||||||
action [random choice from %elements, random choice %elements, random %elements]
|
action [random choice from %elements, random choice %elements, random %elements]
|
||||||
=lua "\%elements[math.random(#\%elements)]"
|
=lua "\%elements[math.random(#\%elements)]"
|
||||||
|
@ -22,9 +22,6 @@ immediately
|
|||||||
for i,tok in ipairs(\%actions.value[1].value) do
|
for i,tok in ipairs(\%actions.value[1].value) do
|
||||||
if tok.type == "Var" then args[#args+1] = nomsu:var_to_lua_identifier(tok.value); end
|
if tok.type == "Var" then args[#args+1] = nomsu:var_to_lua_identifier(tok.value); end
|
||||||
end
|
end
|
||||||
if \%lua.type == "Text" then
|
|
||||||
error("Invalid type for 'compile % to %', expected a dict with expr/statements, but got text.", 0);
|
|
||||||
end
|
|
||||||
for i, arg in ipairs(args) do
|
for i, arg in ipairs(args) do
|
||||||
lua:append(", ");
|
lua:append(", ");
|
||||||
lua:append(arg);
|
lua:append(arg);
|
||||||
|
19
nomsu.peg
19
nomsu.peg
@ -8,12 +8,12 @@ file (File):
|
|||||||
shebang: "#!" [^%nl]* (!. / %nl)
|
shebang: "#!" [^%nl]* (!. / %nl)
|
||||||
|
|
||||||
statement: action / expression
|
statement: action / expression
|
||||||
|
inline_statement: inline_action / inline_expression
|
||||||
|
|
||||||
indented_block (Block):
|
inline_block (Block):
|
||||||
{| indent
|
{| inline_statement (";" inline_statement)+ |}
|
||||||
statement (nodent statement)*
|
block (Block):
|
||||||
(dedent / (("" -> "Error while parsing block") => error))
|
{| statement (nodent statement)+ |} -> Tuple
|
||||||
|} -> Tuple
|
|
||||||
|
|
||||||
inline_nomsu (Nomsu): "\" noindex_inline_expression
|
inline_nomsu (Nomsu): "\" noindex_inline_expression
|
||||||
indented_nomsu (Nomsu):
|
indented_nomsu (Nomsu):
|
||||||
@ -29,7 +29,12 @@ noindex_inline_expression:
|
|||||||
inline_expression:
|
inline_expression:
|
||||||
index_chain / noindex_inline_expression
|
index_chain / noindex_inline_expression
|
||||||
indented_expression:
|
indented_expression:
|
||||||
indented_text / indented_nomsu / indented_list / indented_dict / indented_block
|
indented_text / indented_nomsu / indented_list / indented_dict
|
||||||
|
/ (indent
|
||||||
|
(action dedent
|
||||||
|
/ expression dedent
|
||||||
|
/ block (dedent / (("" -> "Error while parsing indented expression") => error)))
|
||||||
|
)
|
||||||
expression:
|
expression:
|
||||||
inline_expression / (":" %ws* (inline_action / inline_expression) eol) / indented_expression
|
inline_expression / (":" %ws* (inline_action / inline_expression) eol) / indented_expression
|
||||||
|
|
||||||
@ -65,7 +70,7 @@ inline_text_interpolation:
|
|||||||
text_interpolation:
|
text_interpolation:
|
||||||
inline_text_interpolation /
|
inline_text_interpolation /
|
||||||
("\"
|
("\"
|
||||||
(block_comment / line_comment / indented_text / indented_list / indented_block)?
|
(block_comment / line_comment / indented_expression)?
|
||||||
nodent "..")
|
nodent "..")
|
||||||
|
|
||||||
number (Number): (("-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)))-> tonumber)
|
number (Number): (("-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)))-> tonumber)
|
||||||
|
@ -110,9 +110,6 @@ Tree("Nomsu", {
|
|||||||
})
|
})
|
||||||
Tree("Block", {
|
Tree("Block", {
|
||||||
as_lua = function(self, nomsu)
|
as_lua = function(self, nomsu)
|
||||||
if #self.value == 1 then
|
|
||||||
return self.value[1]:as_lua(nomsu)
|
|
||||||
end
|
|
||||||
local lua = Lua(self.source)
|
local lua = Lua(self.source)
|
||||||
for i, line in ipairs(self.value) do
|
for i, line in ipairs(self.value) do
|
||||||
local line_lua = line:as_lua(nomsu)
|
local line_lua = line:as_lua(nomsu)
|
||||||
@ -128,12 +125,20 @@ Tree("Block", {
|
|||||||
if inline == nil then
|
if inline == nil then
|
||||||
inline = false
|
inline = false
|
||||||
end
|
end
|
||||||
if #self.value == 1 then
|
|
||||||
return self.value[1]:as_nomsu(inline)
|
|
||||||
end
|
|
||||||
if inline then
|
if inline then
|
||||||
|
local nomsu = Nomsu(self.source)
|
||||||
|
for i, line in ipairs(self.value) do
|
||||||
|
if i > 1 then
|
||||||
|
nomsu:append("; ")
|
||||||
|
end
|
||||||
|
local line_nomsu = line:as_nomsu(true)
|
||||||
|
if not (line_nomsu) then
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
|
nomsu:append(line_nomsu)
|
||||||
|
end
|
||||||
|
return nomsu
|
||||||
|
end
|
||||||
local nomsu = Nomsu(self.source)
|
local nomsu = Nomsu(self.source)
|
||||||
for i, line in ipairs(self.value) do
|
for i, line in ipairs(self.value) do
|
||||||
line = assert(line:as_nomsu(), "Could not convert line to nomsu")
|
line = assert(line:as_nomsu(), "Could not convert line to nomsu")
|
||||||
|
@ -74,8 +74,6 @@ Tree "Nomsu",
|
|||||||
|
|
||||||
Tree "Block",
|
Tree "Block",
|
||||||
as_lua: (nomsu)=>
|
as_lua: (nomsu)=>
|
||||||
if #@value == 1
|
|
||||||
return @value[1]\as_lua(nomsu)
|
|
||||||
lua = Lua(@source)
|
lua = Lua(@source)
|
||||||
for i,line in ipairs @value
|
for i,line in ipairs @value
|
||||||
line_lua = line\as_lua(nomsu)
|
line_lua = line\as_lua(nomsu)
|
||||||
@ -86,9 +84,15 @@ Tree "Block",
|
|||||||
return lua
|
return lua
|
||||||
|
|
||||||
as_nomsu: (inline=false)=>
|
as_nomsu: (inline=false)=>
|
||||||
if #@value == 1
|
if inline
|
||||||
return @value[1]\as_nomsu(inline)
|
nomsu = Nomsu(@source)
|
||||||
return nil if inline
|
for i,line in ipairs @value
|
||||||
|
if i > 1
|
||||||
|
nomsu\append "; "
|
||||||
|
line_nomsu = line\as_nomsu(true)
|
||||||
|
return nil unless line_nomsu
|
||||||
|
nomsu\append line_nomsu
|
||||||
|
return nomsu
|
||||||
nomsu = Nomsu(@source)
|
nomsu = Nomsu(@source)
|
||||||
for i, line in ipairs @value
|
for i, line in ipairs @value
|
||||||
line = assert(line\as_nomsu!, "Could not convert line to nomsu")
|
line = assert(line\as_nomsu!, "Could not convert line to nomsu")
|
||||||
|
Loading…
Reference in New Issue
Block a user