(type, value)
| 347 | if (type != ")") cont(expression); |
| 348 | } |
| 349 | function functiondef(type, value) { |
| 350 | if (type == "variable") {register(value); return cont(functiondef);} |
| 351 | if (type == "(") return cont(pushlex(")"), pushcontext, commasep(funarg, ")"), poplex, statement, popcontext); |
| 352 | } |
| 353 | function funarg(type, value) { |
| 354 | if (type == "variable") {register(value); return isTS ? cont(maybetype) : cont();} |
| 355 | } |