(commandList)
| 319 | } |
| 320 | |
| 321 | ensureTerminated(commandList) { |
| 322 | var implicitReturn = new ImplicitReturn(); |
| 323 | var end = commandList; |
| 324 | while (end.next) { |
| 325 | end = end.next; |
| 326 | } |
| 327 | end.next = implicitReturn; |
| 328 | } |
| 329 | } |
no outgoing calls
no test coverage detected