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

Changeset 202673 in webkit


Ignore:
Timestamp:
Jun 29, 2016, 10:57:22 PM (10 years ago)
Author:
benjamin@webkit.org
Message:

Fix the debug build after r202667

  • runtime/JSTypedArrayViewPrototype.cpp:

(JSC::JSTypedArrayViewPrototype::finishCreation):
The putDirect was missing the Accessor flag for the GetterSetter.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r202670 r202673  
     12016-06-29  Benjamin Poulain  <benjamin@webkit.org>
     2
     3        Fix the debug build after r202667
     4
     5        * runtime/JSTypedArrayViewPrototype.cpp:
     6        (JSC::JSTypedArrayViewPrototype::finishCreation):
     7        The putDirect was missing the Accessor flag for the GetterSetter.
     8
    192016-06-29  Michael Saboff  <msaboff@apple.com>
    210
  • trunk/Source/JavaScriptCore/runtime/JSTypedArrayViewPrototype.cpp

    r202667 r202673  
    283283    GetterSetter* toStringTagAccessor = GetterSetter::create(vm, globalObject);
    284284    toStringTagAccessor->setGetter(vm, globalObject, toStringTagFunction);
    285     putDirectNonIndexAccessor(vm, vm.propertyNames->toStringTagSymbol, toStringTagAccessor, DontEnum | ReadOnly);
     285    putDirectNonIndexAccessor(vm, vm.propertyNames->toStringTagSymbol, toStringTagAccessor, DontEnum | ReadOnly | Accessor);
    286286
    287287    JSFunction* valuesFunction = JSFunction::createBuiltinFunction(vm, typedArrayPrototypeValuesCodeGenerator(vm), globalObject);
Note: See TracChangeset for help on using the changeset viewer.