(_, value)
| 656 | if (value == "?") return cont(typeexpr, expect(":"), typeexpr) |
| 657 | } |
| 658 | function maybeTypeArgs(_, value) { |
| 659 | if (value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, afterType) |
| 660 | } |
| 661 | function typeparam() { |
| 662 | return pass(typeexpr, maybeTypeDefault) |
| 663 | } |