@return a new return statement of the IR being built.
()
| 124 | * @return a new return statement of the IR being built. |
| 125 | */ |
| 126 | public Return newReturn() { |
| 127 | return returnVar != null ? new Return(returnVar) : new Return(); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Builds an emtpy IR which contains only a {@link Return} statement. |
no outgoing calls
no test coverage detected