c0c02539 by Gary Katsevman

no need for enumeratedString rule

1 parent 37b01102
......@@ -241,17 +241,10 @@ hexDigit
/***** Text *****/
enumeratedString
= chars:enumeratedChar+ _ { return chars.join('') }
quotedString
= '"' '"' _ { return ""; }
/ '"' chars:quotedChar+ '"' _ { return chars.join(''); }
enumeratedChar
= [^'" \n\t\r]
/ [a-zA-Z0-9]
quotedChar
= [^\r\n"]
/ char:char
......