still don't have modules. instead will load all source in /cg/ dir, in alpha filename order

This commit is contained in:
Dustin Swan 2026-02-09 14:04:26 -07:00
parent 0deb8f6307
commit 559191c65e
No known key found for this signature in database
GPG key ID: 30D46587E2100467
8 changed files with 8 additions and 58 deletions

View file

@ -1,7 +1,7 @@
import type { AST, Pattern, Definition } from './ast';
import { _rt, store } from './runtime-js';
const definitions: Map<string, AST> = new Map();
export const definitions: Map<string, AST> = new Map();
const dependencies: Map<string, Set<string>> = new Map();
const dependents: Map<string, Set<string>> = new Map();