fix: tests

This commit is contained in:
Felix Roos 2025-10-07 23:05:00 +02:00
parent 3a7d50924d
commit 319a2d7289
No known key found for this signature in database
3 changed files with 10 additions and 10 deletions

View file

@ -21,7 +21,7 @@ export class MondoParser {
close_curly: /^\}/,
number: /^-?[0-9]*\.?[0-9]+/, // before pipe!
// TODO: better error handling when "-" is used as rest, e.g "s [- bd]"
op: /^[*\/:!@%?+\-&]|^\.{2}/, // * / : ! @ % ? ..
op: /^[*/:!@%?+\-&]|^\.{2}/, // * / : ! @ % ? ..
// dollar: /^\$/,
pipe: /^#/,
stack: /^[,$]/,