(expr: o.TypeofExpr, ctx: EmitterVisitorContext)
| 328 | } |
| 329 | |
| 330 | visitTypeofExpr(expr: o.TypeofExpr, ctx: EmitterVisitorContext): void { |
| 331 | this.printLeadingComments(expr, ctx); |
| 332 | ctx.print(expr, 'typeof '); |
| 333 | expr.expr.visitExpression(this, ctx); |
| 334 | } |
| 335 | |
| 336 | visitVoidExpr(expr: o.VoidExpr, ctx: EmitterVisitorContext): void { |
| 337 | this.printLeadingComments(expr, ctx); |
nothing calls this directly
no test coverage detected
searching dependent graphs…