Changed it so variables can't contain wordbreakers anymore.
This commit is contained in:
parent
60a85bbd8b
commit
c1ec00d5fc
@ -203,9 +203,9 @@ rule [%what_she_said is what she said] =:
|
||||
|
||||
#.. The language only reserves []{}().,:;% as special characters, so functions
|
||||
can have really funky names!
|
||||
rule [>> %foo_bar $$$^ --> %@ @& _~-^-~_~-^ %1 !] =:
|
||||
rule [>> %foo_bar $$$^ --> % @& _~-^-~_~-^ %1 !] =:
|
||||
say %foo_bar
|
||||
say %@
|
||||
say %
|
||||
say %1
|
||||
|
||||
>> "wow" $$$^ --> "so flexible!" @& _~-^-~_~-^ "even numbers can be variables!" !
|
||||
|
@ -117,9 +117,9 @@ local nomsu = [=[ file <- ({{| shebang?
|
||||
|
||||
number <- ({ (("-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)))-> tonumber) }) -> Number
|
||||
|
||||
-- Variables can be nameless (i.e. just %) and can't contain apostrophes
|
||||
-- which is a hack to allow %foo's to parse as "%foo" and "'s" separately
|
||||
variable <- ({ ("%" { ((%wordbreaker+) / (%wordchar+))? }) }) -> Var
|
||||
-- Variables can be nameless (i.e. just %) and can't contain wordbreakers like apostrophe
|
||||
-- which is a hack to allow %'s to parse as "%" and "' s" separately
|
||||
variable <- ({ ("%" { %wordchar* }) }) -> Var
|
||||
|
||||
inline_list <- ({ {|
|
||||
("[" %ws? ((inline_list_item comma)* inline_list_item comma?)? %ws? "]")
|
||||
|
@ -118,9 +118,9 @@ nomsu = [=[
|
||||
|
||||
number <- ({ (("-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)))-> tonumber) }) -> Number
|
||||
|
||||
-- Variables can be nameless (i.e. just %) and can't contain apostrophes
|
||||
-- which is a hack to allow %foo's to parse as "%foo" and "'s" separately
|
||||
variable <- ({ ("%" { ((%wordbreaker+) / (%wordchar+))? }) }) -> Var
|
||||
-- Variables can be nameless (i.e. just %) and can't contain wordbreakers like apostrophe
|
||||
-- which is a hack to allow %'s to parse as "%" and "' s" separately
|
||||
variable <- ({ ("%" { %wordchar* }) }) -> Var
|
||||
|
||||
inline_list <- ({ {|
|
||||
("[" %ws? ((inline_list_item comma)* inline_list_item comma?)? %ws? "]")
|
||||
|
Loading…
Reference in New Issue
Block a user