()
| 35986 | return withJSDoc(finishNode(factory.createWithStatement(expression, statement), pos), hasJSDoc); |
| 35987 | } |
| 35988 | function parseCaseClause() { |
| 35989 | var pos = getNodePos(); |
| 35990 | var hasJSDoc = hasPrecedingJSDocComment(); |
| 35991 | parseExpected(82 /* SyntaxKind.CaseKeyword */); |
| 35992 | var expression = allowInAnd(parseExpression); |
| 35993 | parseExpected(58 /* SyntaxKind.ColonToken */); |
| 35994 | var statements = parseList(3 /* ParsingContext.SwitchClauseStatements */, parseStatement); |
| 35995 | return withJSDoc(finishNode(factory.createCaseClause(expression, statements), pos), hasJSDoc); |
| 35996 | } |
| 35997 | function parseDefaultClause() { |
| 35998 | var pos = getNodePos(); |
| 35999 | parseExpected(88 /* SyntaxKind.DefaultKeyword */); |
no test coverage detected
searching dependent graphs…