()
| 9483 | } |
| 9484 | |
| 9485 | function parseInterfaceExtends() { |
| 9486 | var marker = markerCreate(), id, typeParameters = null; |
| 9487 | |
| 9488 | id = parseVariableIdentifier(); |
| 9489 | if (match('<')) { |
| 9490 | typeParameters = parseTypeParameterInstantiation(); |
| 9491 | } |
| 9492 | |
| 9493 | return markerApply(marker, delegate.createInterfaceExtends( |
| 9494 | id, |
| 9495 | typeParameters |
| 9496 | )); |
| 9497 | } |
| 9498 | |
| 9499 | function parseInterfaceish(marker, allowStatic) { |
| 9500 | var body, bodyMarker, extended = [], id, |
no test coverage detected