MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / PrintIndent

Function PrintIndent

src/Chain/libraries/glua/glua_statement.cpp:29–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27 };
28
29 void PrintIndent(std::stringstream &buff, int indent) {
30 int i = 0;
31 for (i = 0; i < indent; i++) {
32 buff << " ";
33 }
34 }
35
36 void PrintAstSub(GluaDecompileContextP ctx, AstStatement* blockstmt, std::stringstream &buff, int indent) {
37 List* sub = blockstmt->sub;

Callers 8

PrintSimpleStatementFunction · 0.85
PrintBreakStatementFunction · 0.85
PrintReturnStatementFunction · 0.85
PrintBlockStatementFunction · 0.85
PrintIfStatementFunction · 0.85
PrintJmpDestStatementFunction · 0.85
PrintAstStatementFunction · 0.85
PrintFunctionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected