Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add top-level await #7209

Merged
merged 7 commits into from
Nov 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
69 changes: 69 additions & 0 deletions javascript/operators/await.json
Expand Up @@ -62,6 +62,75 @@
"standard_track": true,
"deprecated": false
}
},
"top_level": {
"__compat": {
"description": "Use at module top level",
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Operators/await",
"spec_url": "https://tc39.es/proposal-top-level-await/#introduction",
"support": {
"chrome": {
"version_added": false,
"notes": "See <a href='https://crbug.com/v8/9344'>bug 9344</a>"
},
"chrome_android": {
"version_added": false
},
"edge": {
"version_added": false
},
"firefox": {
"version_added": false,
"notes": "See <a href='https://bugzil.la/1519100'>bug 1519100</a>"
},
"firefox_android": {
"version_added": false
},
"ie": {
"version_added": false
},
"nodejs": [
{
"version_added": "14.8.0",
"notes": "Not supported in CommonJS modules."
},
{
"version_added": "14.3.0",
"flags": [
{
"type": "runtime_flag",
"name": "--experimental-top-level-await"
}
],
"notes": "Not supported in CommonJS modules."
}
],
"opera": {
"version_added": false
},
"opera_android": {
"version_added": false
},
"safari": {
"version_added": false,
"notes": "See <a href='https://webkit.org/b/202484'>bug 202484</a>"
},
"safari_ios": {
"version_added": false
},
"samsunginternet_android": {
"version_added": false
},
"webview_android": {
"version_added": false
}
},
"status": {
"experimental": true,
"standard_track": true,
"deprecated": false
}
}
}
}
}
Expand Down