Ensure Record IDs in single / double quoted strings are parsed consistently
Closes #1327
This commit is contained in:
parent
c9243dec3c
commit
d148ca9ab9
1 changed files with 1 additions and 0 deletions
|
@ -19,6 +19,7 @@ pub fn number(i: &str) -> IResult<&str, ()> {
|
|||
map(char(']'), |_| ()),
|
||||
map(char('}'), |_| ()),
|
||||
map(char('"'), |_| ()),
|
||||
map(char('\''), |_| ()),
|
||||
map(char(';'), |_| ()),
|
||||
map(char(','), |_| ()),
|
||||
map(tag(".."), |_| ()),
|
||||
|
|
Loading…
Reference in a new issue