@typescript-deploys/pr-build 5.4.0-pr-57345-8 → 5.4.0-pr-57358-11

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 CHANGED
@@ -18,7 +18,7 @@ and limitations under the License.
18
18
 
19
19
  // src/compiler/corePublic.ts
20
20
  var versionMajorMinor = "5.4";
21
- var version = `${versionMajorMinor}.0-insiders.20240208`;
21
+ var version = `${versionMajorMinor}.0-insiders.20240212`;
22
22
 
23
23
  // src/compiler/core.ts
24
24
  var emptyArray = [];
@@ -65648,7 +65648,7 @@ function createTypeChecker(host) {
65648
65648
  function hasMatchingArgument(expression, reference) {
65649
65649
  if (expression.arguments) {
65650
65650
  for (const argument of expression.arguments) {
65651
- if (isOrContainsMatchingReference(reference, argument) || optionalChainContainsReference(argument, reference)) {
65651
+ if (isOrContainsMatchingReference(reference, argument) || optionalChainContainsReference(argument, reference) || isAccessExpression(argument) && isMatchingReference(reference, argument.expression)) {
65652
65652
  return true;
65653
65653
  }
65654
65654
  }
package/lib/tsserver.js CHANGED
@@ -2340,7 +2340,7 @@ module.exports = __toCommonJS(server_exports);
2340
2340
 
2341
2341
  // src/compiler/corePublic.ts
2342
2342
  var versionMajorMinor = "5.4";
2343
- var version = `${versionMajorMinor}.0-insiders.20240208`;
2343
+ var version = `${versionMajorMinor}.0-insiders.20240212`;
2344
2344
  var Comparison = /* @__PURE__ */ ((Comparison3) => {
2345
2345
  Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
2346
2346
  Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
@@ -70392,7 +70392,7 @@ function createTypeChecker(host) {
70392
70392
  function hasMatchingArgument(expression, reference) {
70393
70393
  if (expression.arguments) {
70394
70394
  for (const argument of expression.arguments) {
70395
- if (isOrContainsMatchingReference(reference, argument) || optionalChainContainsReference(argument, reference)) {
70395
+ if (isOrContainsMatchingReference(reference, argument) || optionalChainContainsReference(argument, reference) || isAccessExpression(argument) && isMatchingReference(reference, argument.expression)) {
70396
70396
  return true;
70397
70397
  }
70398
70398
  }
package/lib/typescript.js CHANGED
@@ -35,7 +35,7 @@ var ts = (() => {
35
35
  "src/compiler/corePublic.ts"() {
36
36
  "use strict";
37
37
  versionMajorMinor = "5.4";
38
- version = `${versionMajorMinor}.0-insiders.20240208`;
38
+ version = `${versionMajorMinor}.0-insiders.20240212`;
39
39
  Comparison = /* @__PURE__ */ ((Comparison3) => {
40
40
  Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
41
41
  Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
@@ -68147,7 +68147,7 @@ ${lanes.join("\n")}
68147
68147
  function hasMatchingArgument(expression, reference) {
68148
68148
  if (expression.arguments) {
68149
68149
  for (const argument of expression.arguments) {
68150
- if (isOrContainsMatchingReference(reference, argument) || optionalChainContainsReference(argument, reference)) {
68150
+ if (isOrContainsMatchingReference(reference, argument) || optionalChainContainsReference(argument, reference) || isAccessExpression(argument) && isMatchingReference(reference, argument.expression)) {
68151
68151
  return true;
68152
68152
  }
68153
68153
  }
@@ -54,7 +54,7 @@ var path = __toESM(require("path"));
54
54
 
55
55
  // src/compiler/corePublic.ts
56
56
  var versionMajorMinor = "5.4";
57
- var version = `${versionMajorMinor}.0-insiders.20240208`;
57
+ var version = `${versionMajorMinor}.0-insiders.20240212`;
58
58
 
59
59
  // src/compiler/core.ts
60
60
  var emptyArray = [];
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.4.0-pr-57345-8",
5
+ "version": "5.4.0-pr-57358-11",
6
6
  "license": "Apache-2.0",
7
7
  "description": "TypeScript is a language for application scale JavaScript development",
8
8
  "keywords": [
@@ -114,5 +114,5 @@
114
114
  "node": "20.1.0",
115
115
  "npm": "8.19.4"
116
116
  },
117
- "gitHead": "5a306da8c7ffeaed05f9ede81f4d362b31a8fcd0"
117
+ "gitHead": "b87dbd0105bdab7a63a2d0d289f01fe3408069ad"
118
118
  }