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

Function PrintDeclFlags

source/common/scripting/frontend/ast.cpp:924–932  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

922}
923
924static void PrintDeclFlags(FLispString &out, const ZCC_TreeNode *node)
925{
926 auto dnode = (ZCC_DeclFlags *)node;
927 out.Break();
928 out.Open("decl-flags");
929 out.AddHex(dnode->Flags);
930 PrintNodes(out, dnode->Id);
931 out.Close();
932}
933
934static void PrintFlagStmt(FLispString &out, const ZCC_TreeNode *node)
935{

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