| 522 | } |
| 523 | |
| 524 | static void PrintFuncPtrParamDecl(FLispString &out, const ZCC_TreeNode *node) |
| 525 | { |
| 526 | ZCC_FuncPtrParamDecl *dnode = (ZCC_FuncPtrParamDecl *)node; |
| 527 | out.Break(); |
| 528 | out.Open("func-ptr-param-decl"); |
| 529 | PrintNodes(out, dnode->Type); |
| 530 | out.AddHex(dnode->Flags); |
| 531 | out.Close(); |
| 532 | } |
| 533 | |
| 534 | static void PrintFuncPtrType(FLispString &out, const ZCC_TreeNode *node){ |
| 535 | ZCC_FuncPtrType *dnode = (ZCC_FuncPtrType *)node; |
nothing calls this directly
no test coverage detected