@@ -67,7 +67,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
67
67
var ts;
68
68
(function (ts) {
69
69
ts.versionMajorMinor = "4.0";
70
- ts.version = "4.0.7 ";
70
+ ts.version = "4.0.8 ";
71
71
var NativeCollections;
72
72
(function (NativeCollections) {
73
73
function tryGetNativeMap() {
@@ -3516,8 +3516,8 @@ var ts;
3516
3516
},
3517
3517
getFileSize: function (path) {
3518
3518
try {
3519
- var stat = _fs. statSync(path);
3520
- if (stat.isFile()) {
3519
+ var stat = statSync(path);
3520
+ if (stat === null || stat === void 0 ? void 0 : stat .isFile()) {
3521
3521
return stat.size;
3522
3522
}
3523
3523
}
@@ -3562,6 +3562,9 @@ var ts;
3562
3562
}
3563
3563
};
3564
3564
return nodeSystem;
3565
+ function statSync(path) {
3566
+ return _fs.statSync(path, { throwIfNoEntry: false });
3567
+ }
3565
3568
function enableCPUProfiler(path, cb) {
3566
3569
if (activeSession) {
3567
3570
cb();
@@ -3607,19 +3610,20 @@ var ts;
3607
3610
if (activeSession && activeSession !== "stopping") {
3608
3611
var s_1 = activeSession;
3609
3612
activeSession.post("Profiler.stop", function (err, _a) {
3613
+ var _b;
3610
3614
var profile = _a.profile;
3611
3615
if (!err) {
3612
3616
try {
3613
- if (_fs. statSync(profilePath).isDirectory()) {
3617
+ if ((_b = statSync(profilePath)) === null || _b === void 0 ? void 0 : _b .isDirectory()) {
3614
3618
profilePath = _path.join(profilePath, (new Date()).toISOString().replace(/:/g, "-") + "+P" + process.pid + ".cpuprofile");
3615
3619
}
3616
3620
}
3617
- catch (_b ) {
3621
+ catch (_c ) {
3618
3622
}
3619
3623
try {
3620
3624
_fs.mkdirSync(_path.dirname(profilePath), { recursive: true });
3621
3625
}
3622
- catch (_c ) {
3626
+ catch (_d ) {
3623
3627
}
3624
3628
_fs.writeFileSync(profilePath, JSON.stringify(cleanupPaths(profile)));
3625
3629
}
@@ -3808,7 +3812,10 @@ var ts;
3808
3812
if (typeof dirent === "string" || dirent.isSymbolicLink()) {
3809
3813
var name = ts.combinePaths(path, entry);
3810
3814
try {
3811
- stat = _fs.statSync(name);
3815
+ stat = statSync(name);
3816
+ if (!stat) {
3817
+ continue;
3818
+ }
3812
3819
}
3813
3820
catch (e) {
3814
3821
continue;
@@ -3839,7 +3846,10 @@ var ts;
3839
3846
var originalStackTraceLimit = Error.stackTraceLimit;
3840
3847
Error.stackTraceLimit = 0;
3841
3848
try {
3842
- var stat = _fs.statSync(path);
3849
+ var stat = statSync(path);
3850
+ if (!stat) {
3851
+ return false;
3852
+ }
3843
3853
switch (entryKind) {
3844
3854
case 0: return stat.isFile();
3845
3855
case 1: return stat.isDirectory();
@@ -3871,8 +3881,9 @@ var ts;
3871
3881
}
3872
3882
}
3873
3883
function getModifiedTime(path) {
3884
+ var _a;
3874
3885
try {
3875
- return _fs. statSync(path).mtime;
3886
+ return (_a = statSync(path)) === null || _a === void 0 ? void 0 : _a .mtime;
3876
3887
}
3877
3888
catch (e) {
3878
3889
return undefined;
0 commit comments