Skip to content

Commit 1720e1e

Browse files
committed
Add startSourceSpan and endSourceSpan fields to LetDeclaration node
1 parent 76a3dca commit 1720e1e

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
@@ -210,6 +210,8 @@ export class LetDeclaration implements BaseNode {
210210
}
211211

212212
readonly type = 'letDeclaration';
213+
readonly startSourceSpan: null = null;
214+
readonly endSourceSpan: null = null;
213215
}
214216

215217
export interface Visitor {

0 commit comments

Comments
 (0)