| 601 | } |
| 602 | |
| 603 | void CLikeCodeGen::PrintImportInstr(CodeGenContext & ctx, ImportInstruction * importInstr) |
| 604 | { |
| 605 | currentImportInstr = importInstr; |
| 606 | |
| 607 | ctx.DefineVariable(importInstr); |
| 608 | GenerateCode(ctx, importInstr->ImportOperator.Ptr()); |
| 609 | |
| 610 | currentImportInstr = nullptr; |
| 611 | } |
| 612 | |
| 613 | void CLikeCodeGen::PrintImportInstrExpr(CodeGenContext & ctx, ImportInstruction * importInstr) |
| 614 | { |
nothing calls this directly
no test coverage detected