Skip to content

Commit

Permalink
Mark JS public class fields partial in Safari (#6994)
Browse files Browse the repository at this point in the history
This change marks the support in Safari for public class fields
partial_implementation:true — due to the fact that while Safari does
support public *instance* fields, it does not yet support public
*static* fields. See https://bugs.webkit.org/show_bug.cgi?id=194095

Fixes #6875
  • Loading branch information
sideshowbarker authored Oct 29, 2020
1 parent d37cafe commit 8246a02
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions javascript/classes.json
Original file line number Diff line number Diff line change
Expand Up @@ -584,10 +584,14 @@
"version_added": "51"
},
"safari": {
"version_added": "14"
"version_added": "14",
"partial_implementation": true,
"notes": "Doesn't support public static fields. See WebKit bug <a href='https://webkit.org/b/194095'>194095</a>."
},
"safari_ios": {
"version_added": "14"
"version_added": "14",
"partial_implementation": true,
"notes": "Doesn't support public static fields. See WebKit bug <a href='https://webkit.org/b/194095'>194095</a>."
},
"samsunginternet_android": {
"version_added": false
Expand Down

0 comments on commit 8246a02

Please sign in to comment.