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

Function PrintStaticArrayState

source/common/scripting/frontend/ast.cpp:351–359  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

349}
350
351static void PrintStaticArrayState(FLispString &out, const ZCC_TreeNode *node)
352{
353 auto *snode = (ZCC_StaticArrayStatement *)node;
354 out.Break();
355 out.Open("static-array");
356 out.AddName(snode->Id);
357 PrintNodes(out, snode->Values, false, true);
358 out.Close();
359}
360
361static void PrintEnum(FLispString &out, const ZCC_TreeNode *node)
362{

Callers

nothing calls this directly

Calls 5

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

Tested by

no test coverage detected