Changeset 47799 in webkit for trunk/JavaScriptCore/runtime/JSAPIValueWrapper.cpp
- Timestamp:
- Aug 26, 2009, 4:00:39 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSAPIValueWrapper.cpp
r46598 r47799 29 29 namespace JSC { 30 30 31 JSValue JSAPIValueWrapper::toPrimitive(ExecState*, PreferredPrimitiveType) const32 {33 ASSERT_NOT_REACHED();34 return JSValue();35 }36 37 bool JSAPIValueWrapper::getPrimitiveNumber(ExecState*, double&, JSValue&)38 {39 ASSERT_NOT_REACHED();40 return false;41 }42 43 bool JSAPIValueWrapper::toBoolean(ExecState*) const44 {45 ASSERT_NOT_REACHED();46 return false;47 }48 49 double JSAPIValueWrapper::toNumber(ExecState*) const50 {51 ASSERT_NOT_REACHED();52 return 0;53 }54 55 UString JSAPIValueWrapper::toString(ExecState*) const56 {57 ASSERT_NOT_REACHED();58 return UString();59 }60 61 JSObject* JSAPIValueWrapper::toObject(ExecState*) const62 {63 ASSERT_NOT_REACHED();64 return 0;65 }66 67 31 } // namespace JSC
Note:
See TracChangeset
for help on using the changeset viewer.