(commandList)
| 1308 | return this.requireElement("expression"); |
| 1309 | } |
| 1310 | ensureTerminated(commandList) { |
| 1311 | var implicitReturn = new ImplicitReturn(); |
| 1312 | var end = commandList; |
| 1313 | while (end.next) { |
| 1314 | end = end.next; |
| 1315 | } |
| 1316 | end.next = implicitReturn; |
| 1317 | } |
| 1318 | }; |
| 1319 | |
| 1320 | // src/core/kernel.js |