(commandList)
| 1318 | return this.requireElement("expression"); |
| 1319 | } |
| 1320 | ensureTerminated(commandList) { |
| 1321 | var implicitReturn = new ImplicitReturn(); |
| 1322 | var end = commandList; |
| 1323 | while (end.next) { |
| 1324 | end = end.next; |
| 1325 | } |
| 1326 | end.next = implicitReturn; |
| 1327 | } |
| 1328 | }; |
| 1329 | |
| 1330 | // src/core/kernel.js |