()
| 7020 | } |
| 7021 | |
| 7022 | function parseType() { |
| 7023 | var oldInType = state.inType, type; |
| 7024 | state.inType = true; |
| 7025 | |
| 7026 | type = parseUnionType(); |
| 7027 | |
| 7028 | state.inType = oldInType; |
| 7029 | return type; |
| 7030 | } |
| 7031 | |
| 7032 | function parseTypeAnnotation() { |
| 7033 | var marker = markerCreate(), type; |
no test coverage detected