(node, constructorDecl)
| 72122 | } |
| 72123 | } |
| 72124 | function isInConstructorArgumentInitializer(node, constructorDecl) { |
| 72125 | return !!ts.findAncestor(node, function (n) { return ts.isFunctionLikeDeclaration(n) ? "quit" : n.kind === 164 /* SyntaxKind.Parameter */ && n.parent === constructorDecl; }); |
| 72126 | } |
| 72127 | function checkSuperExpression(node) { |
| 72128 | var isCallExpression = node.parent.kind === 208 /* SyntaxKind.CallExpression */ && node.parent.expression === node; |
| 72129 | var immediateContainer = ts.getSuperContainer(node, /*stopOnFunctions*/ true); |
no outgoing calls
no test coverage detected