We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7d2e1f commit 7677f84Copy full SHA for 7677f84
src/parser/tokenizer.ts
@@ -62,7 +62,7 @@ export class Tokenizer {
62
}
63
readOperator (): OperatorToken | undefined {
64
this.skipBlank()
65
- const end = matchOperator(this.input, this.p, this.trie, this.p + 8)
+ const end = matchOperator(this.input, this.p, this.trie)
66
if (end === -1) return
67
return new OperatorToken(this.input, this.p, (this.p = end), this.file)
68
0 commit comments