| 898 | } |
| 899 | |
| 900 | void AddStatement(GluaDecompileContextP ctx, Function* F, std::stringstream &statement) { |
| 901 | FlushBoolean(ctx, F); |
| 902 | if (ctx->error.length()>0) return; |
| 903 | |
| 904 | RawAddStatement(F, statement); |
| 905 | } |
| 906 | |
| 907 | void AddAstStatement(GluaDecompileContextP ctx, Function* F, AstStatement* stmt) { |
| 908 | FlushBoolean(ctx, F); |
no test coverage detected