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

Function PrintVarName

source/common/scripting/frontend/ast.cpp:453–460  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

451}
452
453static void PrintVarName(FLispString &out, const ZCC_TreeNode *node)
454{
455 ZCC_VarName *vnode = (ZCC_VarName *)node;
456 out.Open("var-name");
457 PrintNodes(out, vnode->ArraySize);
458 out.AddName(vnode->Name);
459 out.Close();
460}
461
462static void PrintVarInit(FLispString &out, const ZCC_TreeNode *node)
463{

Callers 4

PrintArrayIterationStmtFunction · 0.85
PrintTwoArgIterationStmtFunction · 0.85
PrintTypedIterationStmtFunction · 0.85

Calls 4

PrintNodesFunction · 0.85
OpenMethod · 0.45
AddNameMethod · 0.45
CloseMethod · 0.45

Tested by

no test coverage detected