(_, value)
| 661 | if (value == "?") return cont(typeexpr, expect(":"), typeexpr) |
| 662 | } |
| 663 | function maybeTypeArgs(_, value) { |
| 664 | if (value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, afterType) |
| 665 | } |
| 666 | function typeparam() { |
| 667 | return pass(typeexpr, maybeTypeDefault) |
| 668 | } |