Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions baselines/audioworklet.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1569,25 +1569,25 @@ declare namespace WebAssembly {
};

/**
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
*/
interface Exception {
/**
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
*/
readonly stack: string | undefined;
/**
* The **`getArg()`** prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
*/
getArg(exceptionTag: Tag, index: number): any;
/**
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
*/
Expand Down Expand Up @@ -1755,7 +1755,7 @@ declare namespace WebAssembly {
};

/**
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
*/
Expand Down
328 changes: 180 additions & 148 deletions baselines/dom.generated.d.ts

Large diffs are not rendered by default.

100 changes: 50 additions & 50 deletions baselines/serviceworker.generated.d.ts

Large diffs are not rendered by default.

100 changes: 50 additions & 50 deletions baselines/sharedworker.generated.d.ts

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions baselines/ts5.5/audioworklet.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1566,25 +1566,25 @@ declare namespace WebAssembly {
};

/**
* The **`WebAssembly.Exception`** object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.
* The **`WebAssembly.Exception`** object represents a runtime exception thrown in a Wasm module.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception)
*/
interface Exception {
/**
* The read-only **`stack`** property of an object instance of type WebAssembly.Exception may contain a stack trace.
* The **`stack`** read-only property of the WebAssembly.Exception object may contain a stack trace.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/stack)
*/
readonly stack: string | undefined;
/**
* The **`getArg()`** prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
* The **`getArg()`** method of the Exception object can be used to get the value of a specified item in the exception's data arguments.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
*/
getArg(exceptionTag: Tag, index: number): any;
/**
* The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
* The **`is()`** method of the Exception object can be used to test if the Exception matches a given tag.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/is)
*/
Expand Down Expand Up @@ -1752,7 +1752,7 @@ declare namespace WebAssembly {
};

/**
* The **`WebAssembly.Tag`** object defines a type of a WebAssembly exception that can be thrown to/from WebAssembly code.
* The **`WebAssembly.Tag`** object represents a WebAssembly exception type that can be thrown in a Wasm module.
*
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Tag)
*/
Expand Down
Loading