(node)
| 15744 | } |
| 15745 | ts.isCommonJsExportedExpression = isCommonJsExportedExpression; |
| 15746 | function isCommonJsExportPropertyAssignment(node) { |
| 15747 | if (!isInJSFile(node)) |
| 15748 | return false; |
| 15749 | return (ts.isBinaryExpression(node) && getAssignmentDeclarationKind(node) === 1 /* AssignmentDeclarationKind.ExportsProperty */); |
| 15750 | } |
| 15751 | ts.isCommonJsExportPropertyAssignment = isCommonJsExportPropertyAssignment; |
| 15752 | function isValidESSymbolDeclaration(node) { |
| 15753 | return (ts.isVariableDeclaration(node) ? isVarConst(node) && ts.isIdentifier(node.name) && isVariableDeclarationInVariableStatement(node) : |
no test coverage detected
searching dependent graphs…