Skip to content

Commit 1acefaa

Browse files
committed
Add type field to LetDeclaration node
1 parent 654e52b commit 1acefaa

File tree

1 file changed

+2
-0
lines changed
  • packages/compiler/src/ml_parser

1 file changed

+2
-0
lines changed

packages/compiler/src/ml_parser/ast.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,8 @@ export class LetDeclaration implements BaseNode {
208208
visit(visitor: Visitor, context: any): any {
209209
return visitor.visitLetDeclaration(this, context);
210210
}
211+
212+
readonly type = 'letDeclaration';
211213
}
212214

213215
export interface Visitor {

0 commit comments

Comments
 (0)