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

Function PrintFuncParamDecl

source/common/scripting/frontend/ast.cpp:867–877  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

865}
866
867static void PrintFuncParamDecl(FLispString &out, const ZCC_TreeNode *node)
868{
869 ZCC_FuncParamDecl *dnode = (ZCC_FuncParamDecl *)node;
870 out.Break();
871 out.Open("func-param-decl");
872 PrintNodes(out, dnode->Type);
873 out.AddName(dnode->Name);
874 out.AddHex(dnode->Flags);
875 PrintNodes(out, dnode->Default);
876 out.Close();
877}
878
879static void PrintConstantDef(FLispString &out, const ZCC_TreeNode *node)
880{

Callers

nothing calls this directly

Calls 6

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

Tested by

no test coverage detected