Add names to ast gen.

This commit is contained in:
Jesse Brault 2025-09-08 14:18:20 -05:00
parent 41693788fc
commit cde6d18e5c

View File

@ -1,4 +1,18 @@
# $schema: ./ast.schema.yaml
# Names
Identifier:
children:
- literal:
build:
type: string
from: parse_whole_pair
FullyQualifiedName:
children:
- identifiers:
rule: Identifier
vec: true
# Top-level constructs
CompilationUnit:
children: