diff --git a/nomsu.moon b/nomsu.moon index 77f9672..22a72df 100755 --- a/nomsu.moon +++ b/nomsu.moon @@ -231,7 +231,7 @@ class NomsuCompiler longstring_error <- (({.+} ("" -> "Error while parsing Longstring")) => error) string_interpolation <- "\" %ws? (inline_functioncall / expression) %ws? "\" - number <- ({ {'-'? ([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+) } }) -> Number + number <- ({ {"-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)) } }) -> Number -- Hack to allow %foo's to parse as "%foo" and "'s" separately variable <- ({ ("%" {%wordchar (!"'" %wordchar)*}) }) -> Var