(body)
| 1275 | } |
| 1276 | |
| 1277 | addBody(body) { |
| 1278 | checkExpr(body); |
| 1279 | // Store a copy of the body, and automatically add the end opcode. |
| 1280 | this.body = body.concat([kExprEnd]); |
| 1281 | return this; |
| 1282 | } |
| 1283 | |
| 1284 | addBodyWithEnd(body) { |
| 1285 | this.body = body; |