Changeset 114274 in webkit for trunk/Source/JavaScriptCore


Ignore:
Timestamp:
Apr 16, 2012, 10:41:52 AM (13 years ago)
Author:
[email protected]
Message:

Fix COMMANDLINE_TYPEDARRAYS build
https://bugs.webkit.org/show_bug.cgi?id=84051

Reviewed by Gavin Barraclough.

Update for new putByIndex API and wtf changes.

  • JSCTypedArrayStubs.h:

(JSC):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r114255 r114274  
     12012-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
    1132012-04-16  Mark Hahnenberg  <[email protected]>
    214
  • trunk/Source/JavaScriptCore/JSCTypedArrayStubs.h

    r111778 r114274  
    2929#include "JSObject.h"
    3030#include "ObjectPrototype.h"
     31#include <wtf/Float32Array.h>
     32#include <wtf/Float64Array.h>
    3133#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>
    3240
    3341namespace JSC {
    34 
     42   
    3543#define TYPED_ARRAY(name, type) \
    3644class JS##name##Array : public JSNonFinalObject { \
     
    4856    static bool getOwnPropertySlotByIndex(JSC::JSCell*, JSC::ExecState*, unsigned propertyName, JSC::PropertySlot&);\
    4957    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);\
    5159    static const JSC::ClassInfo s_info;\
    5260\
Note: See TracChangeset for help on using the changeset viewer.