mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-05-19 04:07:33 +08:00
Minor bug fixes
This commit is contained in:
@@ -129,7 +129,7 @@ export default class Grammar {
|
||||
|
||||
Word = r => P.regex(/[a-zA-Z]+/).desc("a word")
|
||||
|
||||
String = r => P.regex(/(?:[^"\\]|\\.)*/).wrap(P.string('"'), P.string('"'))
|
||||
String = r => P.regex(/(?:[^"\\]|\\.)*/).wrap(P.string('"'), P.string('"')).map(Utility.decodeString)
|
||||
.desc('string (with possibility to escape the quote using \")')
|
||||
|
||||
ReferencePath = r => P.seq(
|
||||
|
||||
Reference in New Issue
Block a user