Tweaked apostrophe rules to make %x's %y work.

This commit is contained in:
Bruce Hill 2017-09-14 04:31:46 -07:00
parent 02cda763c5
commit 27f89faaee
3 changed files with 11 additions and 5 deletions

View File

@ -285,9 +285,9 @@ rule "dict %items":
lua block "vars.dict[vars.pair[1]] = vars.pair[2]"
return %dict
rule "%dict -> %key":
rule "%dict 's %key":
lua expr "vars.dict[vars.key]"
rule "%dict -> %key = %value":
rule "%dict 's %key = %value":
lua block "vars.dict[vars.key] = vars.value"

View File

@ -192,6 +192,12 @@ test:
test:
don't fuck this up
..yields ".."
|Call [don't fuck this up]!
|Call [don 't fuck this up]!
test:
%Brian's hat
..yields ".."
|Call [% 's hat]:
| Var[Brian]
say "All tests passed!"

View File

@ -194,7 +194,7 @@ class NomsuCompiler
((%indent %new_line block ((%dedent (%new_line "..")?) / errors))
/ (one_liner (%ws? (%new_line? ".."))?)) }) -> Thunk
word <- ({ !number {%wordchar+} }) -> Word
word <- ({ !number {%wordchar (!"'" %wordchar)*} }) -> Word
expression <- ({ (longstring / string / number / variable / list / thunk / subexpression) }) -> Expression
string <- ({ (!longstring) '"' {(("\" [^%nl]) / [^"%nl])*} '"' }) -> String
@ -210,7 +210,7 @@ class NomsuCompiler
|}}) -> Longstring
string_interpolation <- "\" %ws? (functioncall / expression) %ws? "\"
number <- ({ {'-'? [0-9]+ ("." [0-9]+)?} }) -> Number
variable <- ({ ("%" {%wordchar+}) }) -> Var
variable <- ({ ("%" {%wordchar (!"'" %wordchar)*}) }) -> Var
subexpression <-
("(" %ws? (functioncall / expression) %ws? ")")