2020-04-30 06:25:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Matthew Olsson <matthewcolsson@gmail.com>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibJS/Runtime/Error.h>
|
|
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
|
|
|
#include <LibJS/Runtime/SymbolConstructor.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
2020-06-20 13:40:48 +00:00
|
|
|
SymbolConstructor::SymbolConstructor(GlobalObject& global_object)
|
2020-10-13 21:49:19 +00:00
|
|
|
: NativeFunction(vm().names.Symbol, *global_object.function_prototype())
|
2020-04-30 06:25:21 +00:00
|
|
|
{
|
2020-06-20 13:40:48 +00:00
|
|
|
}
|
|
|
|
|
2020-07-22 15:50:18 +00:00
|
|
|
void SymbolConstructor::initialize(GlobalObject& global_object)
|
2020-06-20 13:40:48 +00:00
|
|
|
{
|
2020-10-13 21:49:19 +00:00
|
|
|
auto& vm = this->vm();
|
2020-07-22 15:50:18 +00:00
|
|
|
NativeFunction::initialize(global_object);
|
2020-10-13 21:49:19 +00:00
|
|
|
define_property(vm.names.prototype, global_object.symbol_prototype(), 0);
|
|
|
|
define_property(vm.names.length, Value(0), Attribute::Configurable);
|
2020-04-30 06:25:21 +00:00
|
|
|
|
2020-10-13 21:49:19 +00:00
|
|
|
define_native_function(vm.names.for_, for_, 1, Attribute::Writable | Attribute::Configurable);
|
|
|
|
define_native_function(vm.names.keyFor, key_for, 1, Attribute::Writable | Attribute::Configurable);
|
2020-04-30 06:25:21 +00:00
|
|
|
|
2020-07-09 22:34:20 +00:00
|
|
|
#define __JS_ENUMERATE(SymbolName, snake_name) \
|
2020-10-13 21:49:19 +00:00
|
|
|
define_property(vm.names.SymbolName, vm.well_known_symbol_##snake_name(), 0);
|
2020-07-09 22:34:20 +00:00
|
|
|
JS_ENUMERATE_WELL_KNOWN_SYMBOLS
|
|
|
|
#undef __JS_ENUMERATE
|
2020-04-30 06:25:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SymbolConstructor::~SymbolConstructor()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-09-27 15:24:14 +00:00
|
|
|
Value SymbolConstructor::call()
|
2020-04-30 06:25:21 +00:00
|
|
|
{
|
2020-09-27 15:24:14 +00:00
|
|
|
if (!vm().argument_count())
|
|
|
|
return js_symbol(heap(), "", false);
|
2020-09-27 16:36:49 +00:00
|
|
|
return js_symbol(heap(), vm().argument(0).to_string(global_object()), false);
|
2020-04-30 06:25:21 +00:00
|
|
|
}
|
|
|
|
|
2020-09-27 16:45:21 +00:00
|
|
|
Value SymbolConstructor::construct(Function&)
|
2020-04-30 06:25:21 +00:00
|
|
|
{
|
2020-09-27 16:45:21 +00:00
|
|
|
vm().throw_exception<TypeError>(global_object(), ErrorType::NotAConstructor, "Symbol");
|
2020-04-30 06:25:21 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2020-06-20 11:55:34 +00:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(SymbolConstructor::for_)
|
2020-04-30 06:25:21 +00:00
|
|
|
{
|
|
|
|
String description;
|
2020-09-27 16:36:49 +00:00
|
|
|
if (!vm.argument_count()) {
|
2020-04-30 06:25:21 +00:00
|
|
|
description = "undefined";
|
|
|
|
} else {
|
2020-09-27 16:36:49 +00:00
|
|
|
description = vm.argument(0).to_string(global_object);
|
2020-04-30 06:25:21 +00:00
|
|
|
}
|
|
|
|
|
2020-09-22 14:18:51 +00:00
|
|
|
return global_object.vm().get_global_symbol(description);
|
2020-04-30 06:25:21 +00:00
|
|
|
}
|
|
|
|
|
2020-06-20 11:55:34 +00:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(SymbolConstructor::key_for)
|
2020-04-30 06:25:21 +00:00
|
|
|
{
|
2020-09-27 16:36:49 +00:00
|
|
|
auto argument = vm.argument(0);
|
2020-04-30 06:25:21 +00:00
|
|
|
if (!argument.is_symbol()) {
|
2020-10-04 12:55:20 +00:00
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::NotASymbol, argument.to_string_without_side_effects());
|
2020-04-30 06:25:21 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
auto& symbol = argument.as_symbol();
|
|
|
|
if (symbol.is_global())
|
2020-09-27 16:36:49 +00:00
|
|
|
return js_string(vm, symbol.description());
|
2020-04-30 06:25:21 +00:00
|
|
|
|
|
|
|
return js_undefined();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|