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

Function PrintFlagDef

source/common/scripting/frontend/ast.cpp:340–349  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

338}
339
340static void PrintFlagDef(FLispString &out, const ZCC_TreeNode *node)
341{
342 ZCC_FlagDef *snode = (ZCC_FlagDef *)node;
343 out.Break();
344 out.Open("flagdef");
345 out.AddName(snode->NodeName);
346 out.AddName(snode->RefName);
347 out.AddInt(snode->BitValue);
348 out.Close();
349}
350
351static void PrintStaticArrayState(FLispString &out, const ZCC_TreeNode *node)
352{

Callers

nothing calls this directly

Calls 5

BreakMethod · 0.80
AddIntMethod · 0.80
OpenMethod · 0.45
AddNameMethod · 0.45
CloseMethod · 0.45

Tested by

no test coverage detected