()
| 6967 | } |
| 6968 | |
| 6969 | function parsePostfixType() { |
| 6970 | var marker = markerCreate(), t = parsePrimaryType(); |
| 6971 | if (match('[')) { |
| 6972 | expect('['); |
| 6973 | expect(']'); |
| 6974 | return markerApply(marker, delegate.createArrayTypeAnnotation(t)); |
| 6975 | } |
| 6976 | return t; |
| 6977 | } |
| 6978 | |
| 6979 | function parsePrefixType() { |
| 6980 | var marker = markerCreate(); |
no test coverage detected