X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/f9bf01c6616d5ddcf65b13b33cedf9e387ff7a63..a253471d7f8e4d91bf6ebabab00155c3b387d3d0:/runtime/JSNotAnObject.cpp diff --git a/runtime/JSNotAnObject.cpp b/runtime/JSNotAnObject.cpp index f4764e2..337e3a7 100644 --- a/runtime/JSNotAnObject.cpp +++ b/runtime/JSNotAnObject.cpp @@ -35,95 +35,61 @@ namespace JSC { ASSERT_CLASS_FITS_IN_CELL(JSNotAnObject); +ASSERT_HAS_TRIVIAL_DESTRUCTOR(JSNotAnObject); -// JSValue methods -JSValue JSNotAnObject::toPrimitive(ExecState* exec, PreferredPrimitiveType) const -{ - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); - return m_exception; -} - -bool JSNotAnObject::getPrimitiveNumber(ExecState* exec, double&, JSValue&) -{ - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); - return false; -} - -bool JSNotAnObject::toBoolean(ExecState* exec) const -{ - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); - return false; -} +const ClassInfo JSNotAnObject::s_info = { "Object", &Base::s_info, 0, 0, CREATE_METHOD_TABLE(JSNotAnObject) }; -double JSNotAnObject::toNumber(ExecState* exec) const -{ - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); - return NaN; -} - -UString JSNotAnObject::toString(ExecState* exec) const -{ - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); - return ""; -} - -JSObject* JSNotAnObject::toObject(ExecState* exec) const -{ - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); - return m_exception; -} - -// Marking -void JSNotAnObject::markChildren(MarkStack& markStack) +// JSValue methods +JSValue JSNotAnObject::defaultValue(const JSObject*, ExecState* exec, PreferredPrimitiveType) { - JSObject::markChildren(markStack); - markStack.append(m_exception); + ASSERT_UNUSED(exec, exec->hadException()); + return jsNumber(0); } // JSObject methods -bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, const Identifier&, PropertySlot&) +bool JSNotAnObject::getOwnPropertySlot(JSCell*, ExecState* exec, const Identifier&, PropertySlot&) { - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); + ASSERT_UNUSED(exec, exec->hadException()); return false; } -bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, unsigned, PropertySlot&) +bool JSNotAnObject::getOwnPropertySlotByIndex(JSCell*, ExecState* exec, unsigned, PropertySlot&) { - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); + ASSERT_UNUSED(exec, exec->hadException()); return false; } -bool JSNotAnObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier&, PropertyDescriptor&) +bool JSNotAnObject::getOwnPropertyDescriptor(JSObject*, ExecState* exec, const Identifier&, PropertyDescriptor&) { - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); + ASSERT_UNUSED(exec, exec->hadException()); return false; } -void JSNotAnObject::put(ExecState* exec, const Identifier& , JSValue, PutPropertySlot&) +void JSNotAnObject::put(JSCell*, ExecState* exec, const Identifier& , JSValue, PutPropertySlot&) { - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); + ASSERT_UNUSED(exec, exec->hadException()); } -void JSNotAnObject::put(ExecState* exec, unsigned, JSValue) +void JSNotAnObject::putByIndex(JSCell*, ExecState* exec, unsigned, JSValue, bool) { - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); + ASSERT_UNUSED(exec, exec->hadException()); } -bool JSNotAnObject::deleteProperty(ExecState* exec, const Identifier&) +bool JSNotAnObject::deleteProperty(JSCell*, ExecState* exec, const Identifier&) { - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); + ASSERT_UNUSED(exec, exec->hadException()); return false; } -bool JSNotAnObject::deleteProperty(ExecState* exec, unsigned) +bool JSNotAnObject::deletePropertyByIndex(JSCell*, ExecState* exec, unsigned) { - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); + ASSERT_UNUSED(exec, exec->hadException()); return false; } -void JSNotAnObject::getOwnPropertyNames(ExecState* exec, PropertyNameArray&, EnumerationMode) +void JSNotAnObject::getOwnPropertyNames(JSObject*, ExecState* exec, PropertyNameArray&, EnumerationMode) { - ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); + ASSERT_UNUSED(exec, exec->hadException()); } } // namespace JSC