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

Function PrintCompoundStmt

source/common/scripting/frontend/ast.cpp:735–742  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

733}
734
735static void PrintCompoundStmt(FLispString &out, const ZCC_TreeNode *node)
736{
737 ZCC_CompoundStmt *snode = (ZCC_CompoundStmt *)node;
738 out.Break();
739 out.Open("compound-stmt");
740 PrintNodes(out, snode->Content, false, true);
741 out.Close();
742}
743
744static void PrintDefault(FLispString &out, const ZCC_TreeNode *node)
745{

Callers

nothing calls this directly

Calls 4

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

Tested by

no test coverage detected