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