| 93 | } |
| 94 | |
| 95 | void DeleteAstStatement(AstStatement* stmt) { |
| 96 | ClearAstStatement(stmt, NULL); |
| 97 | delete stmt; |
| 98 | } |
| 99 | |
| 100 | void PrintSimpleStatement(AstStatement* stmt, std::stringstream &buff, int indent) { |
| 101 | AstStatement* parent = stmt->parent; |
no test coverage detected