| 608 | return AllInstructionsIterator(node->end().Current); |
| 609 | } |
| 610 | String ImportInstruction::ToString() |
| 611 | { |
| 612 | StringBuilder rs; |
| 613 | rs << Name << " = import [" << ComponentName << "]("; |
| 614 | for (auto & arg : Arguments) |
| 615 | { |
| 616 | rs << arg->ToString() << ", "; |
| 617 | } |
| 618 | rs << ")"; |
| 619 | rs << "\n{"; |
| 620 | rs << ImportOperator->ToString() << "}\n"; |
| 621 | return rs.ProduceString(); |
| 622 | } |
| 623 | String ImportInstruction::GetOperatorString() |
| 624 | { |
| 625 | return "import"; |
no test coverage detected