diff --git a/src/parser/ast.yaml b/src/parser/ast.yaml index 6854b31..855c202 100644 --- a/src/parser/ast.yaml +++ b/src/parser/ast.yaml @@ -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: