(type)
| 476 | return cont(pushlex(end, info), commasep(what, end), poplex); |
| 477 | } |
| 478 | function block(type) { |
| 479 | if (type == "}") return cont(); |
| 480 | return pass(statement, block); |
| 481 | } |
| 482 | function maybetype(type) { |
| 483 | if (isTS && type == ":") return cont(typedef); |
| 484 | } |