Skip to content

Commit

Permalink
Add two new wasm features: exceptionsFinal, typedFunctionReferences (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Elchi3 authored Dec 1, 2024
1 parent 03e49de commit 5c9b6f9
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 1 deletion.
1 change: 1 addition & 0 deletions lint/linter/test-spec-urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const specsExceptions = [
'https://github.com/WebAssembly/multi-memory/blob/main/proposals',
'https://github.com/WebAssembly/memory64/blob/main/proposals/memory64/Overview.md',
'https://github.com/WebAssembly/js-string-builtins/blob/main/proposals/js-string-builtins/Overview.md',
'https://github.com/WebAssembly/function-references/blob/main/proposals/function-references/Overview.md',
];

const allowedSpecURLs = [
Expand Down
3 changes: 2 additions & 1 deletion webassembly/exception-handling.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"webassembly": {
"exception-handling": {
"__compat": {
"spec_url": "https://github.com/WebAssembly/exception-handling/blob/main/proposals/exception-handling/Exceptions.md",
"description": "Legacy exception handling",
"spec_url": "https://github.com/WebAssembly/exception-handling/blob/main/proposals/exception-handling/legacy/Exceptions.md",
"tags": [
"web-features:wasm-exception-handling"
],
Expand Down
39 changes: 39 additions & 0 deletions webassembly/exceptionsFinal.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"webassembly": {
"exceptionsFinal": {
"__compat": {
"description": "Exception handling with `exnref`",
"spec_url": "https://github.com/WebAssembly/exception-handling/blob/main/proposals/exception-handling/Exceptions.md",
"support": {
"chrome": {
"version_added": false
},
"chrome_android": "mirror",
"edge": "mirror",
"firefox": {
"version_added": "131"
},
"firefox_android": "mirror",
"ie": {
"version_added": false
},
"oculus": "mirror",
"opera": "mirror",
"opera_android": "mirror",
"safari": {
"version_added": false
},
"safari_ios": "mirror",
"samsunginternet_android": "mirror",
"webview_android": "mirror",
"webview_ios": "mirror"
},
"status": {
"experimental": true,
"standard_track": true,
"deprecated": false
}
}
}
}
}
39 changes: 39 additions & 0 deletions webassembly/typedFunctionReferences.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"webassembly": {
"typedFunctionReferences": {
"__compat": {
"description": "Typed function references",
"spec_url": "https://github.com/WebAssembly/function-references/blob/main/proposals/function-references/Overview.md",
"support": {
"chrome": {
"version_added": "119"
},
"chrome_android": "mirror",
"edge": "mirror",
"firefox": {
"version_added": "120"
},
"firefox_android": "mirror",
"ie": {
"version_added": false
},
"oculus": "mirror",
"opera": "mirror",
"opera_android": "mirror",
"safari": {
"version_added": false
},
"safari_ios": "mirror",
"samsunginternet_android": "mirror",
"webview_android": "mirror",
"webview_ios": "mirror"
},
"status": {
"experimental": false,
"standard_track": true,
"deprecated": false
}
}
}
}
}

0 comments on commit 5c9b6f9

Please sign in to comment.