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

Function PrintFuncPtrType

source/common/scripting/frontend/ast.cpp:534–542  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

532}
533
534static 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
544static void PrintClassType(FLispString &out, const ZCC_TreeNode *node)
545{

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