(superCall, body)
| 80561 | } |
| 80562 | } |
| 80563 | function superCallIsRootLevelInConstructor(superCall, body) { |
| 80564 | var superCallParent = ts.walkUpParenthesizedExpressions(superCall.parent); |
| 80565 | return ts.isExpressionStatement(superCallParent) && superCallParent.parent === body; |
| 80566 | } |
| 80567 | function nodeImmediatelyReferencesSuperOrThis(node) { |
| 80568 | if (node.kind === 106 /* SyntaxKind.SuperKeyword */ || node.kind === 108 /* SyntaxKind.ThisKeyword */) { |
| 80569 | return true; |
no outgoing calls
no test coverage detected