typescript 5.6.0-dev.20240621 → 5.6.0-dev.20240623

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.
@@ -18,25 +18,25 @@ and limitations under the License.
18
18
 
19
19
  interface ObjectConstructor {
20
20
  /**
21
- * Returns an array of values of the enumerable properties of an object
21
+ * Returns an array of values of the enumerable own properties of an object
22
22
  * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
23
23
  */
24
24
  values<T>(o: { [s: string]: T; } | ArrayLike<T>): T[];
25
25
 
26
26
  /**
27
- * Returns an array of values of the enumerable properties of an object
27
+ * Returns an array of values of the enumerable own properties of an object
28
28
  * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
29
29
  */
30
30
  values(o: {}): any[];
31
31
 
32
32
  /**
33
- * Returns an array of key/values of the enumerable properties of an object
33
+ * Returns an array of key/values of the enumerable own properties of an object
34
34
  * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
35
35
  */
36
36
  entries<T>(o: { [s: string]: T; } | ArrayLike<T>): [string, T][];
37
37
 
38
38
  /**
39
- * Returns an array of key/values of the enumerable properties of an object
39
+ * Returns an array of key/values of the enumerable own properties of an object
40
40
  * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
41
41
  */
42
42
  entries(o: {}): [string, any][];
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.6";
21
- var version = `${versionMajorMinor}.0-dev.20240621`;
21
+ var version = `${versionMajorMinor}.0-dev.20240623`;
22
22
 
23
23
  // src/compiler/core.ts
24
24
  var emptyArray = [];
@@ -1902,6 +1902,7 @@ declare namespace ts {
1902
1902
  }
1903
1903
  export interface RequestCompletedEventBody {
1904
1904
  request_seq: number;
1905
+ performanceData?: PerformanceData;
1905
1906
  }
1906
1907
  /**
1907
1908
  * Item of diagnostic information found in a DiagnosticEvent message.
package/lib/typescript.js CHANGED
@@ -2377,7 +2377,7 @@ module.exports = __toCommonJS(typescript_exports);
2377
2377
 
2378
2378
  // src/compiler/corePublic.ts
2379
2379
  var versionMajorMinor = "5.6";
2380
- var version = `${versionMajorMinor}.0-dev.20240621`;
2380
+ var version = `${versionMajorMinor}.0-dev.20240623`;
2381
2381
  var Comparison = /* @__PURE__ */ ((Comparison3) => {
2382
2382
  Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
2383
2383
  Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
@@ -189954,7 +189954,7 @@ var Session3 = class _Session {
189954
189954
  }
189955
189955
  }
189956
189956
  sendRequestCompletedEvent(requestId) {
189957
- this.event({ request_seq: requestId }, "requestCompleted");
189957
+ this.event({ request_seq: requestId, performanceData: this.performanceData }, "requestCompleted");
189958
189958
  }
189959
189959
  addPerformanceData(key, value) {
189960
189960
  if (!this.performanceData) {
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.6.0-dev.20240621",
5
+ "version": "5.6.0-dev.20240623",
6
6
  "license": "Apache-2.0",
7
7
  "description": "TypeScript is a language for application scale JavaScript development",
8
8
  "keywords": [
@@ -110,5 +110,5 @@
110
110
  "node": "20.1.0",
111
111
  "npm": "8.19.4"
112
112
  },
113
- "gitHead": "327bd0990f2ce3a7062f4c9bf0b8027cc44b2f4f"
113
+ "gitHead": "5d70bf894efe9014d24d4ba439807311e5b33fb8"
114
114
  }