Changeset 202673 in webkit
- Timestamp:
- Jun 29, 2016, 10:57:22 PM (10 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
runtime/JSTypedArrayViewPrototype.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r202670 r202673 1 2016-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 1 9 2016-06-29 Michael Saboff <msaboff@apple.com> 2 10 -
trunk/Source/JavaScriptCore/runtime/JSTypedArrayViewPrototype.cpp
r202667 r202673 283 283 GetterSetter* toStringTagAccessor = GetterSetter::create(vm, globalObject); 284 284 toStringTagAccessor->setGetter(vm, globalObject, toStringTagFunction); 285 putDirectNonIndexAccessor(vm, vm.propertyNames->toStringTagSymbol, toStringTagAccessor, DontEnum | ReadOnly );285 putDirectNonIndexAccessor(vm, vm.propertyNames->toStringTagSymbol, toStringTagAccessor, DontEnum | ReadOnly | Accessor); 286 286 287 287 JSFunction* valuesFunction = JSFunction::createBuiltinFunction(vm, typedArrayPrototypeValuesCodeGenerator(vm), globalObject);
Note:
See TracChangeset
for help on using the changeset viewer.