Changeset 17372 in webkit for trunk/JavaScriptCore/kjs/object.cpp
- Timestamp:
- Oct 27, 2006, 9:48:28 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.cpp
r17237 r17372 298 298 299 299 // ECMA 8.6.2.5 300 bool JSObject::deleteProperty(ExecState */*exec*/, const Identifier &propertyName)300 bool JSObject::deleteProperty(ExecState* /*exec*/, const Identifier &propertyName) 301 301 { 302 302 unsigned attributes; … … 429 429 } 430 430 431 JSValue *JSObject::callAsFunction(ExecState */*exec*/, JSObject */*thisObj*/, const List &/*args*/)431 JSValue *JSObject::callAsFunction(ExecState* /*exec*/, JSObject* /*thisObj*/, const List &/*args*/) 432 432 { 433 433 assert(false); … … 505 505 } 506 506 507 bool JSObject::toBoolean(ExecState */*exec*/) const507 bool JSObject::toBoolean(ExecState*) const 508 508 { 509 509 return true; … … 526 526 } 527 527 528 JSObject *JSObject::toObject(ExecState */*exec*/) const528 JSObject *JSObject::toObject(ExecState*) const 529 529 { 530 530 return const_cast<JSObject*>(this);
Note:
See TracChangeset
for help on using the changeset viewer.