@@ -125,6 +125,7 @@ var ts;
125
125
var ts;
126
126
(function (ts) {
127
127
var createObject = Object.create;
128
+ ts.collator = typeof Intl === "object" && typeof Intl.Collator === "function" ? new Intl.Collator() : undefined;
128
129
function createMap(template) {
129
130
var map = createObject(null);
130
131
map["__"] = undefined;
@@ -682,7 +683,7 @@ var ts;
682
683
if (b === undefined)
683
684
return 1;
684
685
if (ignoreCase) {
685
- if (String.prototype.localeCompare) {
686
+ if (ts.collator && String.prototype.localeCompare) {
686
687
var result = a.localeCompare(b, undefined, { usage: "sort", sensitivity: "accent" });
687
688
return result < 0 ? -1 : result > 0 ? 1 : 0;
688
689
}
@@ -1710,6 +1711,9 @@ var ts;
1710
1711
},
1711
1712
watchDirectory: function (directoryName, callback, recursive) {
1712
1713
var options;
1714
+ if (!directoryExists(directoryName)) {
1715
+ return;
1716
+ }
1713
1717
if (isNode4OrLater() && (process.platform === "win32" || process.platform === "darwin")) {
1714
1718
options = { persistent: true, recursive: !!recursive };
1715
1719
}
@@ -14986,14 +14990,14 @@ var ts;
14986
14990
}
14987
14991
return false;
14988
14992
}
14989
- function isSymbolAccessible(symbol, enclosingDeclaration, meaning) {
14993
+ function isSymbolAccessible(symbol, enclosingDeclaration, meaning, shouldComputeAliasesToMakeVisible ) {
14990
14994
if (symbol && enclosingDeclaration && !(symbol.flags & 262144)) {
14991
14995
var initialSymbol = symbol;
14992
14996
var meaningToLook = meaning;
14993
14997
while (symbol) {
14994
14998
var accessibleSymbolChain = getAccessibleSymbolChain(symbol, enclosingDeclaration, meaningToLook, false);
14995
14999
if (accessibleSymbolChain) {
14996
- var hasAccessibleDeclarations = hasVisibleDeclarations(accessibleSymbolChain[0]);
15000
+ var hasAccessibleDeclarations = hasVisibleDeclarations(accessibleSymbolChain[0], shouldComputeAliasesToMakeVisible );
14997
15001
if (!hasAccessibleDeclarations) {
14998
15002
return {
14999
15003
accessibility: 1,
@@ -15034,7 +15038,7 @@ var ts;
15034
15038
function hasExternalModuleSymbol(declaration) {
15035
15039
return ts.isAmbientModule(declaration) || (declaration.kind === 256 && ts.isExternalOrCommonJsModule(declaration));
15036
15040
}
15037
- function hasVisibleDeclarations(symbol) {
15041
+ function hasVisibleDeclarations(symbol, shouldComputeAliasToMakeVisible ) {
15038
15042
var aliasesToMakeVisible;
15039
15043
if (ts.forEach(symbol.declarations, function (declaration) { return !getIsDeclarationVisible(declaration); })) {
15040
15044
return undefined;
@@ -15046,14 +15050,16 @@ var ts;
15046
15050
if (anyImportSyntax &&
15047
15051
!(anyImportSyntax.flags & 1) &&
15048
15052
isDeclarationVisible(anyImportSyntax.parent)) {
15049
- getNodeLinks(declaration).isVisible = true;
15050
- if (aliasesToMakeVisible) {
15051
- if (!ts.contains(aliasesToMakeVisible, anyImportSyntax)) {
15052
- aliasesToMakeVisible.push(anyImportSyntax);
15053
+ if (shouldComputeAliasToMakeVisible) {
15054
+ getNodeLinks(declaration).isVisible = true;
15055
+ if (aliasesToMakeVisible) {
15056
+ if (!ts.contains(aliasesToMakeVisible, anyImportSyntax)) {
15057
+ aliasesToMakeVisible.push(anyImportSyntax);
15058
+ }
15059
+ }
15060
+ else {
15061
+ aliasesToMakeVisible = [anyImportSyntax];
15053
15062
}
15054
- }
15055
- else {
15056
- aliasesToMakeVisible = [anyImportSyntax];
15057
15063
}
15058
15064
return true;
15059
15065
}
@@ -15076,7 +15082,7 @@ var ts;
15076
15082
}
15077
15083
var firstIdentifier = getFirstIdentifier(entityName);
15078
15084
var symbol = resolveName(enclosingDeclaration, firstIdentifier.text, meaning, undefined, undefined);
15079
- return (symbol && hasVisibleDeclarations(symbol)) || {
15085
+ return (symbol && hasVisibleDeclarations(symbol, true )) || {
15080
15086
accessibility: 1,
15081
15087
errorSymbolName: ts.getTextOfNode(firstIdentifier),
15082
15088
errorNode: firstIdentifier
@@ -15293,14 +15299,10 @@ var ts;
15293
15299
else if (type.flags & (32768 | 65536 | 16 | 16384)) {
15294
15300
buildSymbolDisplay(type.symbol, writer, enclosingDeclaration, 793064, 0, nextFlags);
15295
15301
}
15296
- else if (!(flags & 512) && type.flags & (2097152 | 1572864) && type.aliasSymbol) {
15297
- if (type.flags & 2097152 || !(flags & 1024)) {
15298
- var typeArguments = type.aliasTypeArguments;
15299
- writeSymbolTypeReference(type.aliasSymbol, typeArguments, 0, typeArguments ? typeArguments.length : 0, nextFlags);
15300
- }
15301
- else {
15302
- writeUnionOrIntersectionType(type, nextFlags);
15303
- }
15302
+ else if (!(flags & 512) && ((type.flags & 2097152 && !type.target) || type.flags & 1572864) && type.aliasSymbol &&
15303
+ isSymbolAccessible(type.aliasSymbol, enclosingDeclaration, 793064, false).accessibility === 0) {
15304
+ var typeArguments = type.aliasTypeArguments;
15305
+ writeSymbolTypeReference(type.aliasSymbol, typeArguments, 0, typeArguments ? typeArguments.length : 0, nextFlags);
15304
15306
}
15305
15307
else if (type.flags & 1572864) {
15306
15308
writeUnionOrIntersectionType(type, nextFlags);
@@ -29589,7 +29591,7 @@ var ts;
29589
29591
}
29590
29592
}
29591
29593
function trackSymbol(symbol, enclosingDeclaration, meaning) {
29592
- handleSymbolAccessibilityError(resolver.isSymbolAccessible(symbol, enclosingDeclaration, meaning));
29594
+ handleSymbolAccessibilityError(resolver.isSymbolAccessible(symbol, enclosingDeclaration, meaning, true ));
29593
29595
recordTypeReferenceDirectivesIfNecessary(resolver.getTypeReferenceDirectivesForSymbol(symbol, meaning));
29594
29596
}
29595
29597
function reportInaccessibleThisError() {
@@ -29606,7 +29608,7 @@ var ts;
29606
29608
}
29607
29609
else {
29608
29610
errorNameNode = declaration.name;
29609
- resolver.writeTypeOfDeclaration(declaration, enclosingDeclaration, 2 | 1024 , writer);
29611
+ resolver.writeTypeOfDeclaration(declaration, enclosingDeclaration, 2, writer);
29610
29612
errorNameNode = undefined;
29611
29613
}
29612
29614
}
@@ -29618,7 +29620,7 @@ var ts;
29618
29620
}
29619
29621
else {
29620
29622
errorNameNode = signature.name;
29621
- resolver.writeReturnTypeOfSignatureDeclaration(signature, enclosingDeclaration, 2 | 1024 , writer);
29623
+ resolver.writeReturnTypeOfSignatureDeclaration(signature, enclosingDeclaration, 2, writer);
29622
29624
errorNameNode = undefined;
29623
29625
}
29624
29626
}
@@ -29811,7 +29813,7 @@ var ts;
29811
29813
write(tempVarName);
29812
29814
write(": ");
29813
29815
writer.getSymbolAccessibilityDiagnostic = getDefaultExportAccessibilityDiagnostic;
29814
- resolver.writeTypeOfExpression(node.expression, enclosingDeclaration, 2 | 1024 , writer);
29816
+ resolver.writeTypeOfExpression(node.expression, enclosingDeclaration, 2, writer);
29815
29817
write(";");
29816
29818
writeLine();
29817
29819
write(node.isExportEquals ? "export = " : "export default ");
@@ -30216,7 +30218,7 @@ var ts;
30216
30218
}
30217
30219
else {
30218
30220
writer.getSymbolAccessibilityDiagnostic = getHeritageClauseVisibilityError;
30219
- resolver.writeBaseConstructorTypeOfClass(enclosingDeclaration, enclosingDeclaration, 2 | 1024 , writer);
30221
+ resolver.writeBaseConstructorTypeOfClass(enclosingDeclaration, enclosingDeclaration, 2, writer);
30220
30222
}
30221
30223
function getHeritageClauseVisibilityError(symbolAccessibilityResult) {
30222
30224
var diagnosticMessage;
@@ -32295,14 +32297,14 @@ var ts;
32295
32297
write(" = ");
32296
32298
emitObjectLiteralBody(node, firstComputedPropertyIndex);
32297
32299
for (var i = firstComputedPropertyIndex, n = properties.length; i < n; i++) {
32298
- writeComma();
32299
32300
var property = properties[i];
32300
- emitStart(property);
32301
32301
if (property.kind === 149 || property.kind === 150) {
32302
32302
var accessors = ts.getAllAccessorDeclarations(node.properties, property);
32303
32303
if (property !== accessors.firstAccessor) {
32304
32304
continue;
32305
32305
}
32306
+ writeComma();
32307
+ emitStart(property);
32306
32308
write("Object.defineProperty(");
32307
32309
emit(tempVar);
32308
32310
write(", ");
@@ -32343,6 +32345,8 @@ var ts;
32343
32345
emitEnd(property);
32344
32346
}
32345
32347
else {
32348
+ writeComma();
32349
+ emitStart(property);
32346
32350
emitLeadingComments(property);
32347
32351
emitStart(property.name);
32348
32352
emit(tempVar);
@@ -32361,8 +32365,8 @@ var ts;
32361
32365
else {
32362
32366
ts.Debug.fail("ObjectLiteralElement type not accounted for: " + property.kind);
32363
32367
}
32368
+ emitEnd(property);
32364
32369
}
32365
- emitEnd(property);
32366
32370
}
32367
32371
writeComma();
32368
32372
emit(tempVar);
@@ -32806,7 +32810,11 @@ var ts;
32806
32810
if (modulekind === ts.ModuleKind.System || node.kind !== 69 || ts.nodeIsSynthesized(node)) {
32807
32811
return false;
32808
32812
}
32809
- return !exportEquals && exportSpecifiers && node.text in exportSpecifiers;
32813
+ if (exportEquals || !exportSpecifiers || !(node.text in exportSpecifiers)) {
32814
+ return false;
32815
+ }
32816
+ var declaration = resolver.getReferencedValueDeclaration(node);
32817
+ return declaration && ts.getEnclosingBlockScopeContainer(declaration).kind === 256;
32810
32818
}
32811
32819
function emitPrefixUnaryExpression(node) {
32812
32820
var isPlusPlusOrMinusMinus = (node.operator === 41
0 commit comments