smalltalk.parser: make sure to escape \

db4
John Benediktsson 2015-04-20 08:02:04 -07:00
parent d235a6562e
commit 94cc259ba2
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ Keyword = Identifier:i ":" => [[ i ":" append ]]
KeywordMessageSelector = Keyword+ => [[ concat ]]
BinarySelectorChar = "~" | "!" | "@" | "%" | "&" | "*" | "-" | "+"
| "=" | "|" | "\" | "<" | ">" | "," | "?" | "/"
| "=" | "|" | "\\" | "<" | ">" | "," | "?" | "/"
BinaryMessageSelector = BinarySelectorChar+ => [[ concat ]]
OptionalMinus = ("-" => [[ CHAR: - ]])?
@ -225,4 +225,4 @@ End = !(.)
Program = TopLevelForm End
;EBNF
;EBNF