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

Function PrintProperty

source/common/scripting/frontend/ast.cpp:330–338  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

328}
329
330static void PrintProperty(FLispString &out, const ZCC_TreeNode *node)
331{
332 ZCC_Property *snode = (ZCC_Property *)node;
333 out.Break();
334 out.Open("property");
335 out.AddName(snode->NodeName);
336 PrintNodes(out, snode->Body, false, true);
337 out.Close();
338}
339
340static void PrintFlagDef(FLispString &out, const ZCC_TreeNode *node)
341{

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