| 335 | //----------------------------------------------------------------------------- |
| 336 | |
| 337 | BinaryOperator* Plus(Expr* var, Expr* assignExpr) |
| 338 | { |
| 339 | return mkBinaryOperator(var, assignExpr, BO_Add, var->getType()); |
| 340 | } |
| 341 | //----------------------------------------------------------------------------- |
| 342 | |
| 343 | GotoStmt* Goto(std::string_view labelName) |
no test coverage detected