File tree Expand file tree Collapse file tree 6 files changed +32
-2
lines changed Expand file tree Collapse file tree 6 files changed +32
-2
lines changed Original file line number Diff line number Diff line change @@ -3039,6 +3039,11 @@ var ts;
3039
3039
clearTimeout: clearTimeout,
3040
3040
clearScreen: function () {
3041
3041
process.stdout.write("\x1Bc");
3042
+ },
3043
+ setBlocking: function () {
3044
+ if (process.stdout && process.stdout._handle && process.stdout._handle.setBlocking) {
3045
+ process.stdout._handle.setBlocking(true);
3046
+ }
3042
3047
}
3043
3048
};
3044
3049
return nodeSystem;
@@ -65964,7 +65969,7 @@ if (ts.Debug.isDebugging) {
65964
65969
if (ts.sys.tryEnableSourceMapsForHost && /^development$/i.test(ts.sys.getEnvironmentVariable("NODE_ENV"))) {
65965
65970
ts.sys.tryEnableSourceMapsForHost();
65966
65971
}
65967
- if (process && process.stdout && process.stdout._handle && process.stdout._handle .setBlocking) {
65968
- process.stdout._handle. setBlocking(true );
65972
+ if (ts.sys .setBlocking) {
65973
+ ts.sys. setBlocking();
65969
65974
}
65970
65975
ts.executeCommandLine(ts.sys.args);
Original file line number Diff line number Diff line change @@ -4253,6 +4253,11 @@ var ts;
4253
4253
clearTimeout: clearTimeout,
4254
4254
clearScreen: function () {
4255
4255
process.stdout.write("\x1Bc");
4256
+ },
4257
+ setBlocking: function () {
4258
+ if (process.stdout && process.stdout._handle && process.stdout._handle.setBlocking) {
4259
+ process.stdout._handle.setBlocking(true);
4260
+ }
4256
4261
}
4257
4262
};
4258
4263
return nodeSystem;
Original file line number Diff line number Diff line change @@ -4946,6 +4946,11 @@ var ts;
4946
4946
clearTimeout: clearTimeout,
4947
4947
clearScreen: function () {
4948
4948
process.stdout.write("\x1Bc");
4949
+ },
4950
+ setBlocking: function () {
4951
+ if (process.stdout && process.stdout._handle && process.stdout._handle.setBlocking) {
4952
+ process.stdout._handle.setBlocking(true);
4953
+ }
4949
4954
}
4950
4955
};
4951
4956
return nodeSystem;
Original file line number Diff line number Diff line change @@ -4946,6 +4946,11 @@ var ts;
4946
4946
clearTimeout: clearTimeout,
4947
4947
clearScreen: function () {
4948
4948
process.stdout.write("\x1Bc");
4949
+ },
4950
+ setBlocking: function () {
4951
+ if (process.stdout && process.stdout._handle && process.stdout._handle.setBlocking) {
4952
+ process.stdout._handle.setBlocking(true);
4953
+ }
4949
4954
}
4950
4955
};
4951
4956
return nodeSystem;
Original file line number Diff line number Diff line change @@ -4946,6 +4946,11 @@ var ts;
4946
4946
clearTimeout: clearTimeout,
4947
4947
clearScreen: function () {
4948
4948
process.stdout.write("\x1Bc");
4949
+ },
4950
+ setBlocking: function () {
4951
+ if (process.stdout && process.stdout._handle && process.stdout._handle.setBlocking) {
4952
+ process.stdout._handle.setBlocking(true);
4953
+ }
4949
4954
}
4950
4955
};
4951
4956
return nodeSystem;
Original file line number Diff line number Diff line change @@ -3049,6 +3049,11 @@ var ts;
3049
3049
clearTimeout: clearTimeout,
3050
3050
clearScreen: function () {
3051
3051
process.stdout.write("\x1Bc");
3052
+ },
3053
+ setBlocking: function () {
3054
+ if (process.stdout && process.stdout._handle && process.stdout._handle.setBlocking) {
3055
+ process.stdout._handle.setBlocking(true);
3056
+ }
3052
3057
}
3053
3058
};
3054
3059
return nodeSystem;
You can’t perform that action at this time.
0 commit comments