(block)
| 114282 | return 0; |
| 114283 | } |
| 114284 | function isEmptyBlock(block) { |
| 114285 | return block.statements.length === 0 |
| 114286 | && (!currentSourceFile || ts.rangeEndIsOnSameLineAsRangeStart(block, block, currentSourceFile)); |
| 114287 | } |
| 114288 | function skipSynthesizedParentheses(node) { |
| 114289 | while (node.kind === 212 /* SyntaxKind.ParenthesizedExpression */ && ts.nodeIsSynthesized(node)) { |
| 114290 | node = node.expression; |
no outgoing calls
no test coverage detected