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

Function PrintExprID

source/common/scripting/frontend/ast.cpp:575–582  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

573}
574
575static void PrintExprID(FLispString &out, const ZCC_TreeNode *node)
576{
577 ZCC_ExprID *enode = (ZCC_ExprID *)node;
578 assert(enode->Operation == PEX_ID);
579 out.Open("expr-id");
580 out.AddName(enode->Identifier);
581 out.Close();
582}
583
584static void PrintExprTypeRef(FLispString &out, const ZCC_TreeNode *node)
585{

Callers

nothing calls this directly

Calls 3

OpenMethod · 0.45
AddNameMethod · 0.45
CloseMethod · 0.45

Tested by

no test coverage detected