(operator)
| 34105 | return type; |
| 34106 | } |
| 34107 | function parseTypeOperator(operator) { |
| 34108 | var pos = getNodePos(); |
| 34109 | parseExpected(operator); |
| 34110 | return finishNode(factory.createTypeOperatorNode(operator, parseTypeOperatorOrHigher()), pos); |
| 34111 | } |
| 34112 | function tryParseConstraintOfInferType() { |
| 34113 | if (parseOptional(94 /* SyntaxKind.ExtendsKeyword */)) { |
| 34114 | var constraint = disallowConditionalTypesAnd(parseType); |
no test coverage detected