(ast: o.DynamicImportExpr, ctx: EmitterVisitorContext)
| 395 | } |
| 396 | |
| 397 | visitDynamicImportExpr(ast: o.DynamicImportExpr, ctx: EmitterVisitorContext): void { |
| 398 | this.printLeadingComments(ast, ctx); |
| 399 | ctx.print(ast, `import(`); |
| 400 | |
| 401 | if (typeof ast.url === 'string') { |
| 402 | ctx.print(ast, escapeIdentifier(ast.url, true)!); |
| 403 | } else { |
| 404 | ast.url.visitExpression(this, ctx); |
| 405 | } |
| 406 | |
| 407 | ctx.print(ast, `)`); |
| 408 | } |
| 409 | |
| 410 | visitNotExpr(ast: o.NotExpr, ctx: EmitterVisitorContext): void { |
| 411 | this.printLeadingComments(ast, ctx); |
nothing calls this directly
no test coverage detected
searching dependent graphs…