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

Function PrintArrayIterationStmt

source/common/scripting/frontend/ast.cpp:973–984  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

971}
972
973static void PrintArrayIterationStmt(FLispString &out, const ZCC_TreeNode *node)
974{
975 auto inode = (ZCC_ArrayIterationStmt *)node;
976 out.Break();
977 out.Open("array-iteration-stmt");
978 PrintVarName(out, inode->ItName);
979 out.Break();
980 PrintNodes(out, inode->ItArray);
981 out.Break();
982 PrintNodes(out, inode->LoopStatement);
983 out.Close();
984}
985
986static void PrintTwoArgIterationStmt(FLispString &out, const ZCC_TreeNode *node)
987{

Callers

nothing calls this directly

Calls 5

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

Tested by

no test coverage detected