Preparation for new partial syntax

This commit is contained in:
Yura Dupyn 2026-04-25 14:55:36 +02:00
parent 437e91a004
commit 84cfc5863e
7 changed files with 99 additions and 36 deletions

View file

@ -1,4 +1,5 @@
export { parseDocument } from './parser';
export type { FoundSyntax, ParseDocumentResult, ParseError } 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';