Changeset 222713 in webkit
- Timestamp:
- Oct 2, 2017, 10:09:08 AM (9 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r222689 r222713 1 2017-10-02 Saam Barati <sbarati@apple.com> 2 3 Unreviewed. Fix debug assertion after r222671. 4 5 JSTestCustomGetterSetter::finishCreation needs to call its base's finishCreation implementation. 6 7 * jsc.cpp: 8 (JSTestCustomGetterSetter::finishCreation): 9 1 10 2017-10-01 Commit Queue <commit-queue@webkit.org> 2 11 -
trunk/Source/JavaScriptCore/jsc.cpp
r222671 r222713 1128 1128 void JSTestCustomGetterSetter::finishCreation(VM& vm) 1129 1129 { 1130 Base::finishCreation(vm); 1131 1130 1132 putDirectCustomAccessor(vm, Identifier::fromString(&vm, "customValue"), 1131 1133 CustomGetterSetter::create(vm, customGetValue, customSetValue), 0);
Note:
See TracChangeset
for help on using the changeset viewer.