Modified: trunk/Source/_javascript_Core/ChangeLog (193658 => 193659)
--- trunk/Source/_javascript_Core/ChangeLog 2015-12-07 23:12:50 UTC (rev 193658)
+++ trunk/Source/_javascript_Core/ChangeLog 2015-12-07 23:15:54 UTC (rev 193659)
@@ -1,3 +1,12 @@
+2015-12-07 Saam barati <sbar...@apple.com>
+
+ Update JSC feature list for rest parameters and generators
+ https://bugs.webkit.org/show_bug.cgi?id=151740
+
+ Reviewed by Joseph Pecoraro.
+
+ * features.json:
+
2015-12-07 Filip Pizlo <fpi...@apple.com>
DFG ASSERTION FAILED: m_plan.weakReferences.contains(structure).
Modified: trunk/Source/_javascript_Core/features.json (193658 => 193659)
--- trunk/Source/_javascript_Core/features.json 2015-12-07 23:12:50 UTC (rev 193658)
+++ trunk/Source/_javascript_Core/features.json 2015-12-07 23:15:54 UTC (rev 193659)
@@ -129,12 +129,13 @@
"name": "Generators",
"status": {
"status": "In Development",
- "enabled-by-default": false
+ "enabled-by-default": true
},
"url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-generator-objects",
"specification": "ES6",
"description": "An iterative function object that is interruptable and resumable.",
"webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=150290",
+ "documentation-url": "https://hacks.mozilla.org/2015/05/es6-in-depth-generators/",
"contact": {
"name": "Yusuke Suzuki",
"twitter": "@Constellation",
@@ -226,6 +227,22 @@
"specification": "ES6"
},
{
+ "name": "Rest Parameter",
+ "status": {
+ "status": "Done",
+ "enabled-by-default": true
+ },
+ "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions",
+ "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/_javascript_/Reference/Functions/rest_parameters",
+ "description": "Rest parameters allow you to collect the arguments, or the arguments after some offset, of a function into a JS array.",
+ "specification": "ES6",
+ "contact": {
+ "name": "Saam Barati",
+ "email": "sbar...@apple.com",
+ "twitter": "@saambarati"
+ }
+ },
+ {
"name": "Set Data Structure",
"status": {
"status": "Done",