Changeset 13015 in webkit for trunk/JavaScriptCore/bindings/runtime_object.cpp
- Timestamp:
- Feb 27, 2006, 1:36:56 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_object.cpp
r12840 r13015 49 49 } 50 50 51 JSValue *RuntimeObjectImp::fallbackObjectGetter(ExecState *exec, JSObject *originalObject, const Identifier& propertyName, const PropertySlot& slot)51 JSValue *RuntimeObjectImp::fallbackObjectGetter(ExecState* exec, JSObject*, const Identifier& propertyName, const PropertySlot& slot) 52 52 { 53 53 RuntimeObjectImp *thisObj = static_cast<RuntimeObjectImp *>(slot.slotBase()); … … 64 64 } 65 65 66 JSValue *RuntimeObjectImp::fieldGetter(ExecState *exec, JSObject *originalObject, const Identifier& propertyName, const PropertySlot& slot)66 JSValue *RuntimeObjectImp::fieldGetter(ExecState* exec, JSObject*, const Identifier& propertyName, const PropertySlot& slot) 67 67 { 68 68 RuntimeObjectImp *thisObj = static_cast<RuntimeObjectImp *>(slot.slotBase()); … … 80 80 } 81 81 82 JSValue *RuntimeObjectImp::methodGetter(ExecState *exec, JSObject *originalObject, const Identifier& propertyName, const PropertySlot& slot)82 JSValue *RuntimeObjectImp::methodGetter(ExecState* exec, JSObject*, const Identifier& propertyName, const PropertySlot& slot) 83 83 { 84 84 RuntimeObjectImp *thisObj = static_cast<RuntimeObjectImp *>(slot.slotBase()); … … 134 134 } 135 135 136 void RuntimeObjectImp::put(ExecState *exec, const Identifier &propertyName, 137 JSValue *value, int attr) 136 void RuntimeObjectImp::put(ExecState* exec, const Identifier& propertyName, JSValue* value, int) 138 137 { 139 138 instance->begin(); … … 153 152 } 154 153 155 bool RuntimeObjectImp::canPut(ExecState *exec, const Identifier &propertyName) const154 bool RuntimeObjectImp::canPut(ExecState*, const Identifier& propertyName) const 156 155 { 157 156 bool result = false; … … 169 168 } 170 169 171 bool RuntimeObjectImp::deleteProperty(ExecState *exec, 172 const Identifier &propertyName) 170 bool RuntimeObjectImp::deleteProperty(ExecState*, const Identifier&) 173 171 { 174 172 // Can never remove a property of a RuntimeObject. … … 176 174 } 177 175 178 JSValue *RuntimeObjectImp::defaultValue(ExecState *exec, JSType hint) const176 JSValue *RuntimeObjectImp::defaultValue(ExecState*, JSType hint) const 179 177 { 180 178 JSValue *result; … … 195 193 } 196 194 197 JSValue *RuntimeObjectImp::callAsFunction(ExecState *exec, JSObject *thisObj, const List &args)195 JSValue *RuntimeObjectImp::callAsFunction(ExecState* exec, JSObject*, const List& args) 198 196 { 199 197 instance->begin();
Note:
See TracChangeset
for help on using the changeset viewer.