Develop a partial syntax parser.

This commit is contained in:
Yura Dupyn 2026-04-25 15:21:44 +02:00
parent 84cfc5863e
commit b2e96b9a22
9 changed files with 721 additions and 257 deletions

View file

@ -1,5 +1,4 @@
export { parseDocument } from './parser';
export type { ParseDocumentResult } from './parser';
export type { FoundSyntax, ParseError } from './parse_errors';
export { ConcreteSyntax, Expr } from './syntax';
export type { ConcreteSyntax as ConcreteSyntaxNode, Expr as ExprNode } from './syntax';
export * from './syntax';