Skip to content

Commit 8ffd2f5

Browse files
authored
Add type field for ExpansionCase (#39)
1 parent 6b1d34c commit 8ffd2f5

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
@@ -68,6 +68,8 @@ export class ExpansionCase implements BaseNode {
6868
visit(visitor: Visitor, context: any): any {
6969
return visitor.visitExpansionCase(this, context);
7070
}
71+
72+
readonly type = 'expansionCase';
7173
}
7274

7375
export class Attribute extends NodeWithI18n {

0 commit comments

Comments
 (0)