Skip to content
This repository was archived by the owner on Apr 25, 2025. It is now read-only.

Commit 09e3b45

Browse files
committed
[js-api] Expose Tag and Exception everywhere
Follows WebAssembly/spec@19b1243.
1 parent 9babfa1 commit 09e3b45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

document/js-api/index.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,7 +1221,7 @@ dictionary TagType {
12211221
required sequence<ValueType> parameters;
12221222
};
12231223

1224-
[LegacyNamespace=WebAssembly, Exposed=(Window,Worker,Worklet)]
1224+
[LegacyNamespace=WebAssembly, Exposed=*]
12251225
interface Tag {
12261226
constructor(TagType type);
12271227
TagType type();
@@ -1291,7 +1291,7 @@ dictionary ExceptionOptions {
12911291
boolean traceStack = false;
12921292
};
12931293

1294-
[LegacyNamespace=WebAssembly, Exposed=(Window,Worker,Worklet)]
1294+
[LegacyNamespace=WebAssembly, Exposed=*]
12951295
interface Exception {
12961296
constructor(Tag exceptionTag, sequence<any> payload, optional ExceptionOptions options = {});
12971297
any getArg(Tag exceptionTag, unsigned long index);

0 commit comments

Comments
 (0)