typescript 5.5.0-dev.20240414 → 5.5.0-dev.20240416

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.5";
21
- var version = `${versionMajorMinor}.0-dev.20240414`;
21
+ var version = `${versionMajorMinor}.0-dev.20240416`;
22
22
 
23
23
  // src/compiler/core.ts
24
24
  var emptyArray = [];
@@ -51837,7 +51837,7 @@ function createTypeChecker(host) {
51837
51837
  context,
51838
51838
  /*declaration*/
51839
51839
  void 0,
51840
- getTypeOfSymbol(p),
51840
+ getWriteTypeOfSymbol(p),
51841
51841
  p
51842
51842
  )
51843
51843
  )],
package/lib/typescript.js CHANGED
@@ -2347,7 +2347,7 @@ module.exports = __toCommonJS(typescript_exports);
2347
2347
 
2348
2348
  // src/compiler/corePublic.ts
2349
2349
  var versionMajorMinor = "5.5";
2350
- var version = `${versionMajorMinor}.0-dev.20240414`;
2350
+ var version = `${versionMajorMinor}.0-dev.20240416`;
2351
2351
  var Comparison = /* @__PURE__ */ ((Comparison3) => {
2352
2352
  Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
2353
2353
  Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
@@ -56635,7 +56635,7 @@ function createTypeChecker(host) {
56635
56635
  context,
56636
56636
  /*declaration*/
56637
56637
  void 0,
56638
- getTypeOfSymbol(p),
56638
+ getWriteTypeOfSymbol(p),
56639
56639
  p
56640
56640
  )
56641
56641
  )],
@@ -146469,6 +146469,7 @@ var SymbolObject = class {
146469
146469
  }
146470
146470
  getJsDocTags(checker) {
146471
146471
  if (this.tags === void 0) {
146472
+ this.tags = emptyArray;
146472
146473
  this.tags = getJsDocTagsOfDeclarations(this.declarations, checker);
146473
146474
  }
146474
146475
  return this.tags;
@@ -146658,7 +146659,7 @@ function getJsDocTagsOfDeclarations(declarations, checker) {
146658
146659
  if (declaration.kind === 177 /* GetAccessor */ || declaration.kind === 178 /* SetAccessor */) {
146659
146660
  return symbol.getContextualJsDocTags(declaration, checker);
146660
146661
  }
146661
- return ((_a = symbol.declarations) == null ? void 0 : _a.length) === 1 ? symbol.getJsDocTags() : void 0;
146662
+ return ((_a = symbol.declarations) == null ? void 0 : _a.length) === 1 ? symbol.getJsDocTags(checker) : void 0;
146662
146663
  }
146663
146664
  });
146664
146665
  if (inheritedTags) {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "typescript",
3
3
  "author": "Microsoft Corp.",
4
4
  "homepage": "https://www.typescriptlang.org/",
5
- "version": "5.5.0-dev.20240414",
5
+ "version": "5.5.0-dev.20240416",
6
6
  "license": "Apache-2.0",
7
7
  "description": "TypeScript is a language for application scale JavaScript development",
8
8
  "keywords": [
@@ -111,5 +111,5 @@
111
111
  "node": "20.1.0",
112
112
  "npm": "8.19.4"
113
113
  },
114
- "gitHead": "8bcff81aa2e4882df9873702fb95769bf8a443a0"
114
+ "gitHead": "ce213148ec562296ac7da215ca179043632c119c"
115
115
  }