cps-interpreter/test/parser.spec.ts

8 lines
229 B
TypeScript
Raw Normal View History

2024-02-23 19:27:16 -05:00
import { expect, test } from 'bun:test';
import { TestPrograms } from './programs';
import { peggyParse } from '@/parser';
test('Primitive Operations', async () => {
const ast = peggyParse(await TestPrograms.AddOneThree);
});