MCPcopy Create free account
hub / github.com/ZDoom/Raze / PrintFuncPtrParamDecl

Function PrintFuncPtrParamDecl

source/common/scripting/frontend/ast.cpp:524–532  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

522}
523
524static 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
534static void PrintFuncPtrType(FLispString &out, const ZCC_TreeNode *node){
535 ZCC_FuncPtrType *dnode = (ZCC_FuncPtrType *)node;

Callers

nothing calls this directly

Calls 5

PrintNodesFunction · 0.85
BreakMethod · 0.80
AddHexMethod · 0.80
OpenMethod · 0.45
CloseMethod · 0.45

Tested by

no test coverage detected