Changeset 114274 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Apr 16, 2012, 10:41:52 AM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r114255 r114274 1 2012-04-16 Oliver Hunt <[email protected]> 2 3 Fix COMMANDLINE_TYPEDARRAYS build 4 https://bugs.webkit.org/show_bug.cgi?id=84051 5 6 Reviewed by Gavin Barraclough. 7 8 Update for new putByIndex API and wtf changes. 9 10 * JSCTypedArrayStubs.h: 11 (JSC): 12 1 13 2012-04-16 Mark Hahnenberg <[email protected]> 2 14 -
trunk/Source/JavaScriptCore/JSCTypedArrayStubs.h
r111778 r114274 29 29 #include "JSObject.h" 30 30 #include "ObjectPrototype.h" 31 #include <wtf/Float32Array.h> 32 #include <wtf/Float64Array.h> 31 33 #include <wtf/Forward.h> 34 #include <wtf/Int16Array.h> 35 #include <wtf/Int32Array.h> 36 #include <wtf/Int8Array.h> 37 #include <wtf/Uint16Array.h> 38 #include <wtf/Uint32Array.h> 39 #include <wtf/Uint8Array.h> 32 40 33 41 namespace JSC { 34 42 35 43 #define TYPED_ARRAY(name, type) \ 36 44 class JS##name##Array : public JSNonFinalObject { \ … … 48 56 static bool getOwnPropertySlotByIndex(JSC::JSCell*, JSC::ExecState*, unsigned propertyName, JSC::PropertySlot&);\ 49 57 static void put(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);\ 50 static void putByIndex(JSC::JSCell*, JSC::ExecState*, unsigned propertyName, JSC::JSValue );\58 static void putByIndex(JSC::JSCell*, JSC::ExecState*, unsigned propertyName, JSC::JSValue, bool);\ 51 59 static const JSC::ClassInfo s_info;\ 52 60 \
Note:
See TracChangeset
for help on using the changeset viewer.