| 971 | } |
| 972 | |
| 973 | static void PrintArrayIterationStmt(FLispString &out, const ZCC_TreeNode *node) |
| 974 | { |
| 975 | auto inode = (ZCC_ArrayIterationStmt *)node; |
| 976 | out.Break(); |
| 977 | out.Open("array-iteration-stmt"); |
| 978 | PrintVarName(out, inode->ItName); |
| 979 | out.Break(); |
| 980 | PrintNodes(out, inode->ItArray); |
| 981 | out.Break(); |
| 982 | PrintNodes(out, inode->LoopStatement); |
| 983 | out.Close(); |
| 984 | } |
| 985 | |
| 986 | static void PrintTwoArgIterationStmt(FLispString &out, const ZCC_TreeNode *node) |
| 987 | { |
nothing calls this directly
no test coverage detected