(node)
| 47505 | } |
| 47506 | } |
| 47507 | function bindCallExpression(node) { |
| 47508 | // We're only inspecting call expressions to detect CommonJS modules, so we can skip |
| 47509 | // this check if we've already seen the module indicator |
| 47510 | if (!file.commonJsModuleIndicator && ts.isRequireCall(node, /*checkArgumentIsStringLiteralLike*/ false)) { |
| 47511 | setCommonJsModuleIndicator(node); |
| 47512 | } |
| 47513 | } |
| 47514 | function bindClassLikeDeclaration(node) { |
| 47515 | if (node.kind === 257 /* SyntaxKind.ClassDeclaration */) { |
| 47516 | bindBlockScopedDeclaration(node, 32 /* SymbolFlags.Class */, 899503 /* SymbolFlags.ClassExcludes */); |
no test coverage detected