We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48bfb87 commit a3cb530Copy full SHA for a3cb530
packages/compiler/src/expression_parser/serializer.ts
@@ -136,6 +136,10 @@ class SerializeExpressionVisitor implements expr.AstVisitor {
136
.join(', ')})`;
137
}
138
139
+ visitTypeofExpresion(ast: expr.TypeofExpression, context: any) {
140
+ return `typeof ${ast.expression.visit(this, context)}`;
141
+ }
142
+
143
visitASTWithSource(ast: expr.ASTWithSource, context: any): string {
144
return ast.ast.visit(this, context);
145
0 commit comments