| 890 | } |
| 891 | |
| 892 | void DeclareLocalsAddStatement(GluaDecompileContextP ctx, Function* F, std::stringstream &statement) { |
| 893 | if (F->pc > 0) { |
| 894 | FlushBoolean(ctx, F); |
| 895 | if (ctx->error.length()>0) return; |
| 896 | } |
| 897 | RawAddStatement(F, statement); |
| 898 | } |
| 899 | |
| 900 | void AddStatement(GluaDecompileContextP ctx, Function* F, std::stringstream &statement) { |
| 901 | FlushBoolean(ctx, F); |
no test coverage detected