(node)
| 83612 | getIterationTypesOfIterator(type, resolver, /*errorNode*/ undefined); |
| 83613 | } |
| 83614 | function checkBreakOrContinueStatement(node) { |
| 83615 | // Grammar checking |
| 83616 | if (!checkGrammarStatementInAmbientContext(node)) |
| 83617 | checkGrammarBreakOrContinueStatement(node); |
| 83618 | // TODO: Check that target label is valid |
| 83619 | } |
| 83620 | function unwrapReturnType(returnType, functionFlags) { |
| 83621 | var isGenerator = !!(functionFlags & 1 /* FunctionFlags.Generator */); |
| 83622 | var isAsync = !!(functionFlags & 2 /* FunctionFlags.Async */); |
no test coverage detected