(type, value)
| 306 | if (type == "(") return cont(pushlex(")"), pushcontext, commasep(funarg, ")"), poplex, statement, popcontext); |
| 307 | } |
| 308 | function funarg(type, value) { |
| 309 | if (type == "variable") {register(value); return cont();} |
| 310 | } |
| 311 | |
| 312 | // Interface |
| 313 |