Title: [222713] trunk/Source/_javascript_Core
- Revision
- 222713
- Author
- [email protected]
- Date
- 2017-10-02 10:09:08 -0700 (Mon, 02 Oct 2017)
Log Message
Unreviewed. Fix debug assertion after r222671.
JSTestCustomGetterSetter::finishCreation needs to call its base's finishCreation implementation.
* jsc.cpp:
(JSTestCustomGetterSetter::finishCreation):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (222712 => 222713)
--- trunk/Source/_javascript_Core/ChangeLog 2017-10-02 16:54:12 UTC (rev 222712)
+++ trunk/Source/_javascript_Core/ChangeLog 2017-10-02 17:09:08 UTC (rev 222713)
@@ -1,3 +1,12 @@
+2017-10-02 Saam Barati <[email protected]>
+
+ Unreviewed. Fix debug assertion after r222671.
+
+ JSTestCustomGetterSetter::finishCreation needs to call its base's finishCreation implementation.
+
+ * jsc.cpp:
+ (JSTestCustomGetterSetter::finishCreation):
+
2017-10-01 Commit Queue <[email protected]>
Unreviewed, rolling out r222564.
Modified: trunk/Source/_javascript_Core/jsc.cpp (222712 => 222713)
--- trunk/Source/_javascript_Core/jsc.cpp 2017-10-02 16:54:12 UTC (rev 222712)
+++ trunk/Source/_javascript_Core/jsc.cpp 2017-10-02 17:09:08 UTC (rev 222713)
@@ -1127,6 +1127,8 @@
void JSTestCustomGetterSetter::finishCreation(VM& vm)
{
+ Base::finishCreation(vm);
+
putDirectCustomAccessor(vm, Identifier::fromString(&vm, "customValue"),
CustomGetterSetter::create(vm, customGetValue, customSetValue), 0);
putDirectCustomAccessor(vm, Identifier::fromString(&vm, "customAccessor"),
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes