⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 222713 in webkit


Ignore:
Timestamp:
Oct 2, 2017, 10:09:08 AM (9 years ago)
Author:
sbarati@apple.com
Message:

Unreviewed. Fix debug assertion after r222671.

JSTestCustomGetterSetter::finishCreation needs to call its base's finishCreation implementation.

  • jsc.cpp:

(JSTestCustomGetterSetter::finishCreation):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r222689 r222713  
     12017-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
    1102017-10-01  Commit Queue  <commit-queue@webkit.org>
    211
  • trunk/Source/JavaScriptCore/jsc.cpp

    r222671 r222713  
    11281128void JSTestCustomGetterSetter::finishCreation(VM& vm)
    11291129{
     1130    Base::finishCreation(vm);
     1131
    11301132    putDirectCustomAccessor(vm, Identifier::fromString(&vm, "customValue"),
    11311133        CustomGetterSetter::create(vm, customGetValue, customSetValue), 0);
Note: See TracChangeset for help on using the changeset viewer.