baby's first lexer

This commit is contained in:
Dustin Swan 2026-01-30 23:02:46 -07:00
parent 920151f49c
commit f74d374555
No known key found for this signature in database
GPG key ID: 30D46587E2100467
4 changed files with 152 additions and 7 deletions

View file

@ -1,4 +1,4 @@
import type { Value, Closure } from './types';
import type { Value } from './types';
export type Literal = {
kind: 'literal'