| 318 | } |
| 319 | |
| 320 | static void PrintStruct(FLispString &out, const ZCC_TreeNode *node) |
| 321 | { |
| 322 | ZCC_Struct *snode = (ZCC_Struct *)node; |
| 323 | out.Break(); |
| 324 | out.Open("struct"); |
| 325 | out.AddName(snode->NodeName); |
| 326 | PrintNodes(out, snode->Body, false, true); |
| 327 | out.Close(); |
| 328 | } |
| 329 | |
| 330 | static void PrintProperty(FLispString &out, const ZCC_TreeNode *node) |
| 331 | { |
nothing calls this directly
no test coverage detected