@typescript-deploys/pr-build 5.3.0-pr-55438-2 → 5.3.0-pr-55567-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/tsc.js +5 -5
- package/lib/tsserver.js +5 -5
- package/lib/typescript.js +5 -5
- package/lib/typingsInstaller.js +2 -2
- package/package.json +2 -2
package/lib/tsc.js
CHANGED
|
@@ -4836,7 +4836,7 @@ var sys = (() => {
|
|
|
4836
4836
|
let activeSession;
|
|
4837
4837
|
let profilePath = "./profile.cpuprofile";
|
|
4838
4838
|
const Buffer = require("buffer").Buffer;
|
|
4839
|
-
const
|
|
4839
|
+
const isWindows = process.platform === "win32";
|
|
4840
4840
|
const platform = _os.platform();
|
|
4841
4841
|
const useCaseSensitiveFileNames2 = isFileSystemCaseSensitive();
|
|
4842
4842
|
const fsRealpath = !!_fs.realpathSync.native ? process.platform === "win32" ? fsRealPathHandlingLongPath : _fs.realpathSync.native : _fs.realpathSync;
|
|
@@ -4860,7 +4860,7 @@ var sys = (() => {
|
|
|
4860
4860
|
tscWatchFile: process.env.TSC_WATCHFILE,
|
|
4861
4861
|
useNonPollingWatchers: !!process.env.TSC_NONPOLLING_WATCHER,
|
|
4862
4862
|
tscWatchDirectory: process.env.TSC_WATCHDIRECTORY,
|
|
4863
|
-
inodeWatching:
|
|
4863
|
+
inodeWatching: !isWindows,
|
|
4864
4864
|
sysLog
|
|
4865
4865
|
});
|
|
4866
4866
|
const nodeSystem = {
|
|
@@ -53028,7 +53028,7 @@ function createTypeChecker(host) {
|
|
|
53028
53028
|
if (!lateSymbol)
|
|
53029
53029
|
lateSymbols.set(memberName, lateSymbol = createSymbol(0 /* None */, memberName, 4096 /* Late */));
|
|
53030
53030
|
const earlySymbol = earlySymbols && earlySymbols.get(memberName);
|
|
53031
|
-
if (
|
|
53031
|
+
if (lateSymbol.flags & getExcludedSymbolFlags(symbolFlags) || earlySymbol) {
|
|
53032
53032
|
const declarations = earlySymbol ? concatenate(earlySymbol.declarations, lateSymbol.declarations) : lateSymbol.declarations;
|
|
53033
53033
|
const name = !(type.flags & 8192 /* UniqueESSymbol */) && unescapeLeadingUnderscores(memberName) || declarationNameToString(declName);
|
|
53034
53034
|
forEach(declarations, (declaration) => error(getNameOfDeclaration(declaration) || declaration, Diagnostics.Property_0_was_also_declared_here, name));
|
|
@@ -75036,7 +75036,7 @@ function createTypeChecker(host) {
|
|
|
75036
75036
|
const isPrivate = isPrivateIdentifier(name);
|
|
75037
75037
|
const privateStaticFlags = isPrivate && isStaticMember ? 16 /* PrivateStatic */ : 0;
|
|
75038
75038
|
const names = isPrivate ? privateIdentifiers : isStaticMember ? staticNames : instanceNames;
|
|
75039
|
-
const memberName = name &&
|
|
75039
|
+
const memberName = name && getPropertyNameForPropertyNameNode(name);
|
|
75040
75040
|
if (memberName) {
|
|
75041
75041
|
switch (member.kind) {
|
|
75042
75042
|
case 177 /* GetAccessor */:
|
|
@@ -75083,7 +75083,7 @@ function createTypeChecker(host) {
|
|
|
75083
75083
|
const memberNameNode = member.name;
|
|
75084
75084
|
const isStaticMember = isStatic(member);
|
|
75085
75085
|
if (isStaticMember && memberNameNode) {
|
|
75086
|
-
const memberName =
|
|
75086
|
+
const memberName = getPropertyNameForPropertyNameNode(memberNameNode);
|
|
75087
75087
|
switch (memberName) {
|
|
75088
75088
|
case "name":
|
|
75089
75089
|
case "length":
|
package/lib/tsserver.js
CHANGED
|
@@ -8343,7 +8343,7 @@ var sys = (() => {
|
|
|
8343
8343
|
let activeSession;
|
|
8344
8344
|
let profilePath = "./profile.cpuprofile";
|
|
8345
8345
|
const Buffer2 = require("buffer").Buffer;
|
|
8346
|
-
const
|
|
8346
|
+
const isWindows = process.platform === "win32";
|
|
8347
8347
|
const platform = _os.platform();
|
|
8348
8348
|
const useCaseSensitiveFileNames2 = isFileSystemCaseSensitive();
|
|
8349
8349
|
const fsRealpath = !!_fs.realpathSync.native ? process.platform === "win32" ? fsRealPathHandlingLongPath : _fs.realpathSync.native : _fs.realpathSync;
|
|
@@ -8367,7 +8367,7 @@ var sys = (() => {
|
|
|
8367
8367
|
tscWatchFile: process.env.TSC_WATCHFILE,
|
|
8368
8368
|
useNonPollingWatchers: !!process.env.TSC_NONPOLLING_WATCHER,
|
|
8369
8369
|
tscWatchDirectory: process.env.TSC_WATCHDIRECTORY,
|
|
8370
|
-
inodeWatching:
|
|
8370
|
+
inodeWatching: !isWindows,
|
|
8371
8371
|
sysLog
|
|
8372
8372
|
});
|
|
8373
8373
|
const nodeSystem = {
|
|
@@ -57730,7 +57730,7 @@ function createTypeChecker(host) {
|
|
|
57730
57730
|
if (!lateSymbol)
|
|
57731
57731
|
lateSymbols.set(memberName, lateSymbol = createSymbol(0 /* None */, memberName, 4096 /* Late */));
|
|
57732
57732
|
const earlySymbol = earlySymbols && earlySymbols.get(memberName);
|
|
57733
|
-
if (
|
|
57733
|
+
if (lateSymbol.flags & getExcludedSymbolFlags(symbolFlags) || earlySymbol) {
|
|
57734
57734
|
const declarations = earlySymbol ? concatenate(earlySymbol.declarations, lateSymbol.declarations) : lateSymbol.declarations;
|
|
57735
57735
|
const name = !(type.flags & 8192 /* UniqueESSymbol */) && unescapeLeadingUnderscores(memberName) || declarationNameToString(declName);
|
|
57736
57736
|
forEach(declarations, (declaration) => error2(getNameOfDeclaration(declaration) || declaration, Diagnostics.Property_0_was_also_declared_here, name));
|
|
@@ -79738,7 +79738,7 @@ function createTypeChecker(host) {
|
|
|
79738
79738
|
const isPrivate = isPrivateIdentifier(name);
|
|
79739
79739
|
const privateStaticFlags = isPrivate && isStaticMember ? 16 /* PrivateStatic */ : 0;
|
|
79740
79740
|
const names = isPrivate ? privateIdentifiers : isStaticMember ? staticNames : instanceNames;
|
|
79741
|
-
const memberName = name &&
|
|
79741
|
+
const memberName = name && getPropertyNameForPropertyNameNode(name);
|
|
79742
79742
|
if (memberName) {
|
|
79743
79743
|
switch (member.kind) {
|
|
79744
79744
|
case 177 /* GetAccessor */:
|
|
@@ -79785,7 +79785,7 @@ function createTypeChecker(host) {
|
|
|
79785
79785
|
const memberNameNode = member.name;
|
|
79786
79786
|
const isStaticMember = isStatic(member);
|
|
79787
79787
|
if (isStaticMember && memberNameNode) {
|
|
79788
|
-
const memberName =
|
|
79788
|
+
const memberName = getPropertyNameForPropertyNameNode(memberNameNode);
|
|
79789
79789
|
switch (memberName) {
|
|
79790
79790
|
case "name":
|
|
79791
79791
|
case "length":
|
package/lib/typescript.js
CHANGED
|
@@ -6115,7 +6115,7 @@ ${lanes.join("\n")}
|
|
|
6115
6115
|
let activeSession;
|
|
6116
6116
|
let profilePath = "./profile.cpuprofile";
|
|
6117
6117
|
const Buffer2 = require("buffer").Buffer;
|
|
6118
|
-
const
|
|
6118
|
+
const isWindows = process.platform === "win32";
|
|
6119
6119
|
const platform = _os.platform();
|
|
6120
6120
|
const useCaseSensitiveFileNames2 = isFileSystemCaseSensitive();
|
|
6121
6121
|
const fsRealpath = !!_fs.realpathSync.native ? process.platform === "win32" ? fsRealPathHandlingLongPath : _fs.realpathSync.native : _fs.realpathSync;
|
|
@@ -6139,7 +6139,7 @@ ${lanes.join("\n")}
|
|
|
6139
6139
|
tscWatchFile: process.env.TSC_WATCHFILE,
|
|
6140
6140
|
useNonPollingWatchers: !!process.env.TSC_NONPOLLING_WATCHER,
|
|
6141
6141
|
tscWatchDirectory: process.env.TSC_WATCHDIRECTORY,
|
|
6142
|
-
inodeWatching:
|
|
6142
|
+
inodeWatching: !isWindows,
|
|
6143
6143
|
sysLog
|
|
6144
6144
|
});
|
|
6145
6145
|
const nodeSystem = {
|
|
@@ -55497,7 +55497,7 @@ ${lanes.join("\n")}
|
|
|
55497
55497
|
if (!lateSymbol)
|
|
55498
55498
|
lateSymbols.set(memberName, lateSymbol = createSymbol(0 /* None */, memberName, 4096 /* Late */));
|
|
55499
55499
|
const earlySymbol = earlySymbols && earlySymbols.get(memberName);
|
|
55500
|
-
if (
|
|
55500
|
+
if (lateSymbol.flags & getExcludedSymbolFlags(symbolFlags) || earlySymbol) {
|
|
55501
55501
|
const declarations = earlySymbol ? concatenate(earlySymbol.declarations, lateSymbol.declarations) : lateSymbol.declarations;
|
|
55502
55502
|
const name = !(type.flags & 8192 /* UniqueESSymbol */) && unescapeLeadingUnderscores(memberName) || declarationNameToString(declName);
|
|
55503
55503
|
forEach(declarations, (declaration) => error2(getNameOfDeclaration(declaration) || declaration, Diagnostics.Property_0_was_also_declared_here, name));
|
|
@@ -77505,7 +77505,7 @@ ${lanes.join("\n")}
|
|
|
77505
77505
|
const isPrivate = isPrivateIdentifier(name);
|
|
77506
77506
|
const privateStaticFlags = isPrivate && isStaticMember ? 16 /* PrivateStatic */ : 0;
|
|
77507
77507
|
const names = isPrivate ? privateIdentifiers : isStaticMember ? staticNames : instanceNames;
|
|
77508
|
-
const memberName = name &&
|
|
77508
|
+
const memberName = name && getPropertyNameForPropertyNameNode(name);
|
|
77509
77509
|
if (memberName) {
|
|
77510
77510
|
switch (member.kind) {
|
|
77511
77511
|
case 177 /* GetAccessor */:
|
|
@@ -77552,7 +77552,7 @@ ${lanes.join("\n")}
|
|
|
77552
77552
|
const memberNameNode = member.name;
|
|
77553
77553
|
const isStaticMember = isStatic(member);
|
|
77554
77554
|
if (isStaticMember && memberNameNode) {
|
|
77555
|
-
const memberName =
|
|
77555
|
+
const memberName = getPropertyNameForPropertyNameNode(memberNameNode);
|
|
77556
77556
|
switch (memberName) {
|
|
77557
77557
|
case "name":
|
|
77558
77558
|
case "length":
|
package/lib/typingsInstaller.js
CHANGED
|
@@ -4249,7 +4249,7 @@ var sys = (() => {
|
|
|
4249
4249
|
let activeSession;
|
|
4250
4250
|
let profilePath = "./profile.cpuprofile";
|
|
4251
4251
|
const Buffer2 = require("buffer").Buffer;
|
|
4252
|
-
const
|
|
4252
|
+
const isWindows = process.platform === "win32";
|
|
4253
4253
|
const platform = _os.platform();
|
|
4254
4254
|
const useCaseSensitiveFileNames2 = isFileSystemCaseSensitive();
|
|
4255
4255
|
const fsRealpath = !!_fs.realpathSync.native ? process.platform === "win32" ? fsRealPathHandlingLongPath : _fs.realpathSync.native : _fs.realpathSync;
|
|
@@ -4273,7 +4273,7 @@ var sys = (() => {
|
|
|
4273
4273
|
tscWatchFile: process.env.TSC_WATCHFILE,
|
|
4274
4274
|
useNonPollingWatchers: !!process.env.TSC_NONPOLLING_WATCHER,
|
|
4275
4275
|
tscWatchDirectory: process.env.TSC_WATCHDIRECTORY,
|
|
4276
|
-
inodeWatching:
|
|
4276
|
+
inodeWatching: !isWindows,
|
|
4277
4277
|
sysLog
|
|
4278
4278
|
});
|
|
4279
4279
|
const nodeSystem = {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@typescript-deploys/pr-build",
|
|
3
3
|
"author": "Microsoft Corp.",
|
|
4
4
|
"homepage": "https://www.typescriptlang.org/",
|
|
5
|
-
"version": "5.3.0-pr-
|
|
5
|
+
"version": "5.3.0-pr-55567-2",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"node": "20.1.0",
|
|
114
114
|
"npm": "8.19.4"
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "22c7ae66dab2403efef749840a44618256af0ef2"
|
|
117
117
|
}
|