| 733 | } |
| 734 | |
| 735 | static void PrintCompoundStmt(FLispString &out, const ZCC_TreeNode *node) |
| 736 | { |
| 737 | ZCC_CompoundStmt *snode = (ZCC_CompoundStmt *)node; |
| 738 | out.Break(); |
| 739 | out.Open("compound-stmt"); |
| 740 | PrintNodes(out, snode->Content, false, true); |
| 741 | out.Close(); |
| 742 | } |
| 743 | |
| 744 | static void PrintDefault(FLispString &out, const ZCC_TreeNode *node) |
| 745 | { |
nothing calls this directly
no test coverage detected