Make not precedence higher than binop

This commit is contained in:
Amber Sprenkels
2022-09-30 15:12:01 +02:00
parent c26c505f6a
commit fd68b467c5

View File

@@ -114,7 +114,7 @@ export function otherTagExprParse(rest: string): parse.PResult<TagExpr> {
}
export function tagExprParse(rest: string): parse.PResult<TagExpr> {
return binOpExprOrOther.or(otherTagExpr).parse(rest)
return binOpExprOrOther.parse(rest)
}
export let everyNNights: P<EveryNNights> =