barraclough@apple.com | 6c9b264 | 2012-05-22 00:37:09 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 Apple Inc. All rights reserved. |
utatane.tea@gmail.com | 947fa4e | 2015-01-31 01:23:56 +0000 | [diff] [blame] | 3 | * Copyright (C) 2015 Yusuke Suzuki <utatane.tea@gmail.com>. |
barraclough@apple.com | 6c9b264 | 2012-05-22 00:37:09 +0000 | [diff] [blame] | 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 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 | * |
| 14 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| 15 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| 16 | * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 17 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| 18 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 19 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 20 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 21 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 22 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 23 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 24 | * THE POSSIBILITY OF SUCH DAMAGE. |
| 25 | */ |
| 26 | |
| 27 | #include "config.h" |
utatane.tea@gmail.com | 947fa4e | 2015-01-31 01:23:56 +0000 | [diff] [blame] | 28 | #include "SymbolObject.h" |
barraclough@apple.com | 6c9b264 | 2012-05-22 00:37:09 +0000 | [diff] [blame] | 29 | |
fpizlo@apple.com | fb7eff2 | 2014-02-11 01:45:50 +0000 | [diff] [blame] | 30 | #include "JSCInlines.h" |
ggaren@apple.com | 4122d36 | 2012-08-31 00:00:46 +0000 | [diff] [blame] | 31 | |
barraclough@apple.com | 6c9b264 | 2012-05-22 00:37:09 +0000 | [diff] [blame] | 32 | namespace JSC { |
| 33 | |
utatane.tea@gmail.com | 947fa4e | 2015-01-31 01:23:56 +0000 | [diff] [blame] | 34 | STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(SymbolObject); |
barraclough@apple.com | 6c9b264 | 2012-05-22 00:37:09 +0000 | [diff] [blame] | 35 | |
ysuzuki@apple.com | 97ff5a7 | 2019-02-16 18:50:08 +0000 | [diff] [blame] | 36 | const ClassInfo SymbolObject::s_info = { "Symbol", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(SymbolObject) }; |
utatane.tea@gmail.com | 947fa4e | 2015-01-31 01:23:56 +0000 | [diff] [blame] | 37 | |
| 38 | SymbolObject::SymbolObject(VM& vm, Structure* structure) |
ysuzuki@apple.com | 97ff5a7 | 2019-02-16 18:50:08 +0000 | [diff] [blame] | 39 | : Base(vm, structure) |
barraclough@apple.com | 6c9b264 | 2012-05-22 00:37:09 +0000 | [diff] [blame] | 40 | { |
barraclough@apple.com | 6c9b264 | 2012-05-22 00:37:09 +0000 | [diff] [blame] | 41 | } |
| 42 | |
utatane.tea@gmail.com | 947fa4e | 2015-01-31 01:23:56 +0000 | [diff] [blame] | 43 | void SymbolObject::finishCreation(VM& vm, Symbol* symbol) |
barraclough@apple.com | 6c9b264 | 2012-05-22 00:37:09 +0000 | [diff] [blame] | 44 | { |
utatane.tea@gmail.com | 947fa4e | 2015-01-31 01:23:56 +0000 | [diff] [blame] | 45 | Base::finishCreation(vm); |
keith_miller@apple.com | 45da760 | 2017-01-27 01:47:52 +0000 | [diff] [blame] | 46 | ASSERT(inherits(vm, info())); |
utatane.tea@gmail.com | 947fa4e | 2015-01-31 01:23:56 +0000 | [diff] [blame] | 47 | setInternalValue(vm, symbol); |
| 48 | } |
| 49 | |
keith_miller@apple.com | 398a66a | 2016-08-29 18:50:44 +0000 | [diff] [blame] | 50 | String SymbolObject::toStringName(const JSObject*, ExecState*) |
| 51 | { |
utatane.tea@gmail.com | 8407763 | 2018-06-23 08:39:34 +0000 | [diff] [blame] | 52 | return "Object"_s; |
keith_miller@apple.com | 398a66a | 2016-08-29 18:50:44 +0000 | [diff] [blame] | 53 | } |
| 54 | |
utatane.tea@gmail.com | 947fa4e | 2015-01-31 01:23:56 +0000 | [diff] [blame] | 55 | JSValue SymbolObject::defaultValue(const JSObject* object, ExecState*, PreferredPrimitiveType) |
| 56 | { |
| 57 | const SymbolObject* symbolObject = jsCast<const SymbolObject*>(object); |
| 58 | return symbolObject->internalValue(); |
barraclough@apple.com | 6c9b264 | 2012-05-22 00:37:09 +0000 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | } // namespace JSC |