| 783 | } |
| 784 | |
| 785 | static void PrintIterationStmt(FLispString &out, const ZCC_TreeNode *node) |
| 786 | { |
| 787 | ZCC_IterationStmt *snode = (ZCC_IterationStmt *)node; |
| 788 | out.Break(); |
| 789 | out.Open("iteration-stmt"); |
| 790 | out.Add((snode->CheckAt == ZCC_IterationStmt::Start) ? "start" : "end"); |
| 791 | out.Break(); |
| 792 | PrintNodes(out, snode->LoopCondition); |
| 793 | out.Break(); |
| 794 | PrintNodes(out, snode->LoopBumper); |
| 795 | out.Break(); |
| 796 | PrintNodes(out, snode->LoopStatement); |
| 797 | out.Close(); |
| 798 | } |
| 799 | |
| 800 | static void PrintIfStmt(FLispString &out, const ZCC_TreeNode *node) |
| 801 | { |
nothing calls this directly
no test coverage detected