@return a new temporary variable of given type.
(Type type)
| 117 | * @return a new temporary variable of given type. |
| 118 | */ |
| 119 | public Var newTempVar(Type type) { |
| 120 | return newVar(TEMP + tempCounter++, type); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * @return a new return statement of the IR being built. |
no test coverage detected