| 1016 | } |
| 1017 | |
| 1018 | static void PrintTypedIterationStmt(FLispString &out, const ZCC_TreeNode *node) |
| 1019 | { |
| 1020 | auto inode = (ZCC_TypedIterationStmt *)node; |
| 1021 | out.Break(); |
| 1022 | out.Open("cast-iteration-stmt"); |
| 1023 | PrintVarName(out, inode->ItType); |
| 1024 | out.Break(); |
| 1025 | PrintVarName(out, inode->ItVar); |
| 1026 | out.Break(); |
| 1027 | PrintNodes(out, inode->ItExpr); |
| 1028 | out.Break(); |
| 1029 | PrintNodes(out, inode->LoopStatement); |
| 1030 | out.Close(); |
| 1031 | } |
| 1032 | |
| 1033 | static const NodePrinterFunc TreeNodePrinter[] = |
| 1034 | { |
nothing calls this directly
no test coverage detected