(type, value)
| 634 | if (type == "variable") {register(value); return cont(classNameAfter);} |
| 635 | } |
| 636 | function classNameAfter(type, value) { |
| 637 | if (value == "extends" || value == "implements" || (isTS && type == ",")) |
| 638 | return cont(isTS ? typeexpr : expression, classNameAfter); |
| 639 | if (type == "{") return cont(pushlex("}"), classBody, poplex); |
| 640 | } |
| 641 | function classBody(type, value) { |
| 642 | if (type == "variable" || cx.style == "keyword") { |
| 643 | if ((value == "async" || value == "static" || value == "get" || value == "set" || |
no test coverage detected