(type, value)
| 749 | if (type == "variable") {register(value); return cont(classNameAfter);} |
| 750 | } |
| 751 | function classNameAfter(type, value) { |
| 752 | if (value == "<") return cont(pushlex(">"), commasep(typeparam, ">"), poplex, classNameAfter) |
| 753 | if (value == "extends" || value == "implements" || (isTS && type == ",")) { |
| 754 | if (value == "implements") cx.marked = "keyword"; |
| 755 | return cont(isTS ? typeexpr : expression, classNameAfter); |
| 756 | } |
| 757 | if (type == "{") return cont(pushlex("}"), classBody, poplex); |
| 758 | } |
| 759 | function classBody(type, value) { |
| 760 | if (type == "async" || |
| 761 | (type == "variable" && |
no test coverage detected