mrowe@apple.com | 2f6dfdf | 2008-05-22 01:20:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * |
| 8 | * 1. Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in the |
| 12 | * documentation and/or other materials provided with the distribution. |
| 13 | * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of |
| 14 | * its contributors may be used to endorse or promote products derived |
| 15 | * from this software without specific prior written permission. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
| 18 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 19 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 20 | * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| 21 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 22 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 23 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 24 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
| 28 | |
| 29 | |
| 30 | #include "config.h" |
| 31 | #include "JSNotAnObject.h" |
| 32 | |
| 33 | #include <wtf/UnusedParam.h> |
| 34 | |
cwzwarich@webkit.org | 3f782f6 | 2008-09-08 01:28:33 +0000 | [diff] [blame] | 35 | namespace JSC { |
mrowe@apple.com | 2f6dfdf | 2008-05-22 01:20:45 +0000 | [diff] [blame] | 36 | |
ggaren@apple.com | fea4353 | 2008-08-17 20:23:49 +0000 | [diff] [blame] | 37 | ASSERT_CLASS_FITS_IN_CELL(JSNotAnObject); |
| 38 | |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 39 | // JSValue methods |
ggaren@apple.com | dc067b6 | 2009-05-01 22:43:39 +0000 | [diff] [blame] | 40 | JSValue JSNotAnObject::toPrimitive(ExecState* exec, PreferredPrimitiveType) const |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 41 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 42 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 43 | return m_exception; |
mrowe@apple.com | 2f6dfdf | 2008-05-22 01:20:45 +0000 | [diff] [blame] | 44 | } |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 45 | |
ggaren@apple.com | dc067b6 | 2009-05-01 22:43:39 +0000 | [diff] [blame] | 46 | bool JSNotAnObject::getPrimitiveNumber(ExecState* exec, double&, JSValue&) |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 47 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 48 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 49 | return false; |
| 50 | } |
| 51 | |
| 52 | bool JSNotAnObject::toBoolean(ExecState* exec) const |
| 53 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 54 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 55 | return false; |
| 56 | } |
| 57 | |
| 58 | double JSNotAnObject::toNumber(ExecState* exec) const |
| 59 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 60 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 61 | return NaN; |
| 62 | } |
| 63 | |
| 64 | UString JSNotAnObject::toString(ExecState* exec) const |
| 65 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 66 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 67 | return ""; |
| 68 | } |
| 69 | |
| 70 | JSObject* JSNotAnObject::toObject(ExecState* exec) const |
| 71 | { |
darin@apple.com | e3f0f28 | 2009-01-11 21:58:23 +0000 | [diff] [blame] | 72 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 73 | return m_exception; |
| 74 | } |
| 75 | |
| 76 | // Marking |
| 77 | void JSNotAnObject::mark() |
| 78 | { |
| 79 | JSCell::mark(); |
| 80 | if (!m_exception->marked()) |
| 81 | m_exception->mark(); |
| 82 | } |
| 83 | |
| 84 | // JSObject methods |
| 85 | bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, const Identifier&, PropertySlot&) |
| 86 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 87 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 88 | return false; |
| 89 | } |
| 90 | |
| 91 | bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, unsigned, PropertySlot&) |
| 92 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 93 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 94 | return false; |
| 95 | } |
| 96 | |
ggaren@apple.com | dc067b6 | 2009-05-01 22:43:39 +0000 | [diff] [blame] | 97 | void JSNotAnObject::put(ExecState* exec, const Identifier& , JSValue, PutPropertySlot&) |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 98 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 99 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 100 | } |
| 101 | |
ggaren@apple.com | dc067b6 | 2009-05-01 22:43:39 +0000 | [diff] [blame] | 102 | void JSNotAnObject::put(ExecState* exec, unsigned, JSValue) |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 103 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 104 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | bool JSNotAnObject::deleteProperty(ExecState* exec, const Identifier&) |
| 108 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 109 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 110 | return false; |
| 111 | } |
| 112 | |
| 113 | bool JSNotAnObject::deleteProperty(ExecState* exec, unsigned) |
| 114 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 115 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 116 | return false; |
| 117 | } |
| 118 | |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 119 | void JSNotAnObject::getPropertyNames(ExecState* exec, PropertyNameArray&) |
| 120 | { |
ap@webkit.org | 5b68ea1 | 2009-01-05 17:21:13 +0000 | [diff] [blame] | 121 | ASSERT_UNUSED(exec, exec->hadException() && exec->exception() == m_exception); |
weinig@apple.com | a963b96 | 2008-06-05 05:36:55 +0000 | [diff] [blame] | 122 | } |
| 123 | |
cwzwarich@webkit.org | 3f782f6 | 2008-09-08 01:28:33 +0000 | [diff] [blame] | 124 | } // namespace JSC |