Title: [199402] trunk/Source/_javascript_Core
- Revision
- 199402
- Author
- [email protected]
- Date
- 2016-04-12 20:14:14 -0700 (Tue, 12 Apr 2016)
Log Message
Unreviewed undo change from ArrayClass to ArrayWithUndecided, which
was not intedend to land with r199397.
* runtime/ArrayPrototype.h:
(JSC::ArrayPrototype::createStructure):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (199401 => 199402)
--- trunk/Source/_javascript_Core/ChangeLog 2016-04-13 02:29:23 UTC (rev 199401)
+++ trunk/Source/_javascript_Core/ChangeLog 2016-04-13 03:14:14 UTC (rev 199402)
@@ -1,3 +1,11 @@
+2016-04-12 Keith Miller <[email protected]>
+
+ Unreviewed undo change from ArrayClass to ArrayWithUndecided, which
+ was not intedend to land with r199397.
+
+ * runtime/ArrayPrototype.h:
+ (JSC::ArrayPrototype::createStructure):
+
2016-04-12 Mark Lam <[email protected]>
Rollout: ES6: Implement String.prototype.split and RegExp.prototype[@@split].
Modified: trunk/Source/_javascript_Core/runtime/ArrayPrototype.h (199401 => 199402)
--- trunk/Source/_javascript_Core/runtime/ArrayPrototype.h 2016-04-13 02:29:23 UTC (rev 199401)
+++ trunk/Source/_javascript_Core/runtime/ArrayPrototype.h 2016-04-13 03:14:14 UTC (rev 199402)
@@ -41,7 +41,7 @@
static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype)
{
- return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info(), ArrayWithUndecided);
+ return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info(), ArrayClass);
}
void setConstructor(VM&, JSObject* constructorProperty, unsigned attributes);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes