(node)
| 15737 | } |
| 15738 | ts.isVariableDeclarationInVariableStatement = isVariableDeclarationInVariableStatement; |
| 15739 | function isCommonJsExportedExpression(node) { |
| 15740 | if (!isInJSFile(node)) |
| 15741 | return false; |
| 15742 | return (ts.isObjectLiteralExpression(node.parent) && ts.isBinaryExpression(node.parent.parent) && getAssignmentDeclarationKind(node.parent.parent) === 2 /* AssignmentDeclarationKind.ModuleExports */) || |
| 15743 | isCommonJsExportPropertyAssignment(node.parent); |
| 15744 | } |
| 15745 | ts.isCommonJsExportedExpression = isCommonJsExportedExpression; |
| 15746 | function isCommonJsExportPropertyAssignment(node) { |
| 15747 | if (!isInJSFile(node)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…