(node)
| 15750 | } |
| 15751 | ts.isCommonJsExportPropertyAssignment = isCommonJsExportPropertyAssignment; |
| 15752 | function isValidESSymbolDeclaration(node) { |
| 15753 | return (ts.isVariableDeclaration(node) ? isVarConst(node) && ts.isIdentifier(node.name) && isVariableDeclarationInVariableStatement(node) : |
| 15754 | ts.isPropertyDeclaration(node) ? hasEffectiveReadonlyModifier(node) && hasStaticModifier(node) : |
| 15755 | ts.isPropertySignature(node) && hasEffectiveReadonlyModifier(node)) || isCommonJsExportPropertyAssignment(node); |
| 15756 | } |
| 15757 | ts.isValidESSymbolDeclaration = isValidESSymbolDeclaration; |
| 15758 | function introducesArgumentsExoticObject(node) { |
| 15759 | switch (node.kind) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…