mondo improvements:

- add second string type
- add $ as alias for stack
- simplify leaf handling
This commit is contained in:
Felix Roos 2025-03-18 22:33:14 +01:00
parent 40f6489111
commit 7db52b3dc2
No known key found for this signature in database
3 changed files with 30 additions and 25 deletions

View file

@ -5,7 +5,7 @@ This program is free software: you can redistribute it and/or modify it under th
*/
import { describe, expect, it } from 'vitest';
import { MondoParser, MondoRunner, printAst } from '../mondo.mjs';
import { MondoParser, printAst } from '../mondo.mjs';
const parser = new MondoParser();
const p = (code) => parser.parse(code, -1);