@typescript-deploys/pr-build 6.0.0-pr-62093-13 → 6.0.0-pr-62093-21
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 +3 -3
- package/lib/typescript.js +3 -3
- package/package.json +1 -1
package/lib/_tsc.js
CHANGED
|
@@ -18,7 +18,7 @@ and limitations under the License.
|
|
|
18
18
|
|
|
19
19
|
// src/compiler/corePublic.ts
|
|
20
20
|
var versionMajorMinor = "6.0";
|
|
21
|
-
var version = `${versionMajorMinor}.0-insiders.
|
|
21
|
+
var version = `${versionMajorMinor}.0-insiders.20250820`;
|
|
22
22
|
|
|
23
23
|
// src/compiler/core.ts
|
|
24
24
|
var emptyArray = [];
|
|
@@ -68594,7 +68594,7 @@ function createTypeChecker(host) {
|
|
|
68594
68594
|
inference.priority = combinedPriority;
|
|
68595
68595
|
}
|
|
68596
68596
|
if (priority === (inference.priority & ~512 /* DistributiveConditional */)) {
|
|
68597
|
-
if (inference.priority
|
|
68597
|
+
if (inference.priority > combinedPriority) {
|
|
68598
68598
|
inference.priority = combinedPriority;
|
|
68599
68599
|
clearCachedInferences(inferences);
|
|
68600
68600
|
}
|
|
@@ -68890,7 +68890,7 @@ function createTypeChecker(host) {
|
|
|
68890
68890
|
function inferToConditionalType(source, target) {
|
|
68891
68891
|
const info = target.root.isDistributive ? getInferenceInfoForType(getActualTypeVariable(target.checkType)) : void 0;
|
|
68892
68892
|
const saveIndividualPriority = info == null ? void 0 : info.individualPriority;
|
|
68893
|
-
if (info
|
|
68893
|
+
if (info) {
|
|
68894
68894
|
info.individualPriority = (info.individualPriority || 0 /* None */) | 512 /* DistributiveConditional */;
|
|
68895
68895
|
}
|
|
68896
68896
|
if (source.flags & 16777216 /* Conditional */) {
|
package/lib/typescript.js
CHANGED
|
@@ -2285,7 +2285,7 @@ module.exports = __toCommonJS(typescript_exports);
|
|
|
2285
2285
|
|
|
2286
2286
|
// src/compiler/corePublic.ts
|
|
2287
2287
|
var versionMajorMinor = "6.0";
|
|
2288
|
-
var version = `${versionMajorMinor}.0-insiders.
|
|
2288
|
+
var version = `${versionMajorMinor}.0-insiders.20250820`;
|
|
2289
2289
|
var Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
2290
2290
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
2291
2291
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -73203,7 +73203,7 @@ function createTypeChecker(host) {
|
|
|
73203
73203
|
inference.priority = combinedPriority;
|
|
73204
73204
|
}
|
|
73205
73205
|
if (priority === (inference.priority & ~512 /* DistributiveConditional */)) {
|
|
73206
|
-
if (inference.priority
|
|
73206
|
+
if (inference.priority > combinedPriority) {
|
|
73207
73207
|
inference.priority = combinedPriority;
|
|
73208
73208
|
clearCachedInferences(inferences);
|
|
73209
73209
|
}
|
|
@@ -73499,7 +73499,7 @@ function createTypeChecker(host) {
|
|
|
73499
73499
|
function inferToConditionalType(source, target) {
|
|
73500
73500
|
const info = target.root.isDistributive ? getInferenceInfoForType(getActualTypeVariable(target.checkType)) : void 0;
|
|
73501
73501
|
const saveIndividualPriority = info == null ? void 0 : info.individualPriority;
|
|
73502
|
-
if (info
|
|
73502
|
+
if (info) {
|
|
73503
73503
|
info.individualPriority = (info.individualPriority || 0 /* None */) | 512 /* DistributiveConditional */;
|
|
73504
73504
|
}
|
|
73505
73505
|
if (source.flags & 16777216 /* Conditional */) {
|
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": "6.0.0-pr-62093-
|
|
5
|
+
"version": "6.0.0-pr-62093-21",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|