(statement)
| 82945 | } |
| 82946 | } |
| 82947 | function checkRightHandSideOfForOf(statement) { |
| 82948 | var use = statement.awaitModifier ? 15 /* IterationUse.ForAwaitOf */ : 13 /* IterationUse.ForOf */; |
| 82949 | return checkIteratedTypeOrElementType(use, checkNonNullExpression(statement.expression), undefinedType, statement.expression); |
| 82950 | } |
| 82951 | function checkIteratedTypeOrElementType(use, inputType, sentType, errorNode) { |
| 82952 | if (isTypeAny(inputType)) { |
| 82953 | return inputType; |
no test coverage detected
searching dependent graphs…