Changeset 47799 in webkit for trunk/JavaScriptCore/runtime/JSPropertyNameIterator.cpp
- Timestamp:
- Aug 26, 2009, 4:00:39 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSPropertyNameIterator.cpp
r47022 r47799 38 38 } 39 39 40 JSValue JSPropertyNameIterator::toPrimitive(ExecState*, PreferredPrimitiveType) const41 {42 ASSERT_NOT_REACHED();43 return JSValue();44 }45 46 bool JSPropertyNameIterator::getPrimitiveNumber(ExecState*, double&, JSValue&)47 {48 ASSERT_NOT_REACHED();49 return false;50 }51 52 bool JSPropertyNameIterator::toBoolean(ExecState*) const53 {54 ASSERT_NOT_REACHED();55 return false;56 }57 58 double JSPropertyNameIterator::toNumber(ExecState*) const59 {60 ASSERT_NOT_REACHED();61 return 0;62 }63 64 UString JSPropertyNameIterator::toString(ExecState*) const65 {66 ASSERT_NOT_REACHED();67 return "";68 }69 70 JSObject* JSPropertyNameIterator::toObject(ExecState*) const71 {72 ASSERT_NOT_REACHED();73 return 0;74 }75 76 40 void JSPropertyNameIterator::markChildren(MarkStack& markStack) 77 41 {
Note:
See TracChangeset
for help on using the changeset viewer.