Changeset 13015 in webkit for trunk/JavaScriptCore/bindings/runtime_array.cpp
- Timestamp:
- Feb 27, 2006, 1:36:56 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_array.cpp
r11962 r13015 45 45 } 46 46 47 JSValue *RuntimeArray::lengthGetter(ExecState *exec, JSObject *originalObject, const Identifier& propertyName, const PropertySlot& slot)47 JSValue *RuntimeArray::lengthGetter(ExecState*, JSObject*, const Identifier&, const PropertySlot& slot) 48 48 { 49 49 RuntimeArray *thisObj = static_cast<RuntimeArray *>(slot.slotBase()); … … 51 51 } 52 52 53 JSValue *RuntimeArray::indexGetter(ExecState *exec, JSObject *originalObject, const Identifier& propertyName, const PropertySlot& slot)53 JSValue *RuntimeArray::indexGetter(ExecState* exec, JSObject*, const Identifier&, const PropertySlot& slot) 54 54 { 55 55 RuntimeArray *thisObj = static_cast<RuntimeArray *>(slot.slotBase()); … … 103 103 } 104 104 105 void RuntimeArray::put(ExecState *exec, unsigned index, JSValue *value, int attr)105 void RuntimeArray::put(ExecState* exec, unsigned index, JSValue* value, int) 106 106 { 107 107 if (index >= getLength()) { … … 113 113 } 114 114 115 bool RuntimeArray::deleteProperty(ExecState *exec, const Identifier &propertyName)115 bool RuntimeArray::deleteProperty(ExecState*, const Identifier&) 116 116 { 117 117 return false; 118 118 } 119 119 120 bool RuntimeArray::deleteProperty(ExecState *exec, unsigned index)120 bool RuntimeArray::deleteProperty(ExecState*, unsigned) 121 121 { 122 122 return false;
Note:
See TracChangeset
for help on using the changeset viewer.