(ast: o.InstantiateExpr, ctx: EmitterVisitorContext)
| 345 | } |
| 346 | |
| 347 | visitInstantiateExpr(ast: o.InstantiateExpr, ctx: EmitterVisitorContext): void { |
| 348 | this.printLeadingComments(ast, ctx); |
| 349 | ctx.print(ast, `new `); |
| 350 | ast.classExpr.visitExpression(this, ctx); |
| 351 | ctx.print(ast, `(`); |
| 352 | this.visitAllExpressions(ast.args, ctx, ','); |
| 353 | ctx.print(ast, `)`); |
| 354 | } |
| 355 | |
| 356 | visitLiteralExpr(ast: o.LiteralExpr, ctx: EmitterVisitorContext): void { |
| 357 | this.printLeadingComments(ast, ctx); |
nothing calls this directly
no test coverage detected
searching dependent graphs…