| 532 | } |
| 533 | |
| 534 | static void PrintFuncPtrType(FLispString &out, const ZCC_TreeNode *node){ |
| 535 | ZCC_FuncPtrType *dnode = (ZCC_FuncPtrType *)node; |
| 536 | out.Break(); |
| 537 | out.Open("func-ptr-type"); |
| 538 | PrintNodes(out, dnode->RetType); |
| 539 | PrintNodes(out, dnode->Params); |
| 540 | out.AddHex(dnode->Scope); |
| 541 | out.Close(); |
| 542 | } |
| 543 | |
| 544 | static void PrintClassType(FLispString &out, const ZCC_TreeNode *node) |
| 545 | { |
nothing calls this directly
no test coverage detected