Ignore:
Timestamp:
Oct 2, 2017, 10:09:08 AM (8 years ago)
Author:
[email protected]
Message:

Unreviewed. Fix debug assertion after r222671.

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

  • jsc.cpp:

(JSTestCustomGetterSetter::finishCreation):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.