Ensure numbers are parsed inside (bracket expressions)
This commit is contained in:
parent
60c05ee082
commit
f13aafe576
1 changed files with 1 additions and 0 deletions
|
@ -517,6 +517,7 @@ pub fn number(i: &str) -> IResult<&str, Number> {
|
|||
map(operator, |_| ()),
|
||||
map(assigner, |_| ()),
|
||||
map(comment, |_| ()),
|
||||
map(tag(")"), |_| ()),
|
||||
map(tag("]"), |_| ()),
|
||||
map(tag("}"), |_| ()),
|
||||
map(tag(";"), |_| ()),
|
||||
|
|
Loading…
Reference in a new issue