| 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; |
no outgoing calls
no test coverage detected