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

Function PrintDeclarator

source/common/scripting/frontend/ast.cpp:889–897  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

887}
888
889static void PrintDeclarator(FLispString &out, const ZCC_TreeNode *node)
890{
891 ZCC_Declarator *dnode = (ZCC_Declarator *)node;
892 out.Break();
893 out.Open("declarator");
894 out.AddHex(dnode->Flags);
895 PrintNodes(out, dnode->Type);
896 out.Close();
897}
898
899static void PrintVarDeclarator(FLispString &out, const ZCC_TreeNode *node)
900{

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