mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:57:45 +00:00
LibJS: Move ExecutionContext function implementations out of line
This commit is contained in:
parent
4311c2164e
commit
40cc38869e
3 changed files with 46 additions and 25 deletions
|
@ -81,6 +81,7 @@ set(SOURCES
|
||||||
Runtime/ErrorConstructor.cpp
|
Runtime/ErrorConstructor.cpp
|
||||||
Runtime/ErrorPrototype.cpp
|
Runtime/ErrorPrototype.cpp
|
||||||
Runtime/ErrorTypes.cpp
|
Runtime/ErrorTypes.cpp
|
||||||
|
Runtime/ExecutionContext.cpp
|
||||||
Runtime/FinalizationRegistry.cpp
|
Runtime/FinalizationRegistry.cpp
|
||||||
Runtime/FinalizationRegistryConstructor.cpp
|
Runtime/FinalizationRegistryConstructor.cpp
|
||||||
Runtime/FinalizationRegistryPrototype.cpp
|
Runtime/FinalizationRegistryPrototype.cpp
|
||||||
|
|
41
Userland/Libraries/LibJS/Runtime/ExecutionContext.cpp
Normal file
41
Userland/Libraries/LibJS/Runtime/ExecutionContext.cpp
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
||||||
|
* Copyright (c) 2020-2021, Linus Groh <linusg@serenityos.org>
|
||||||
|
* Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <LibJS/Runtime/ExecutionContext.h>
|
||||||
|
|
||||||
|
namespace JS {
|
||||||
|
|
||||||
|
ExecutionContext::ExecutionContext(Heap& heap)
|
||||||
|
: arguments(heap)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
ExecutionContext::ExecutionContext(MarkedVector<Value> existing_arguments)
|
||||||
|
: arguments(move(existing_arguments))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
ExecutionContext ExecutionContext::copy() const
|
||||||
|
{
|
||||||
|
ExecutionContext copy { arguments };
|
||||||
|
|
||||||
|
copy.function = function;
|
||||||
|
copy.realm = realm;
|
||||||
|
copy.script_or_module = script_or_module;
|
||||||
|
copy.lexical_environment = lexical_environment;
|
||||||
|
copy.variable_environment = variable_environment;
|
||||||
|
copy.private_environment = private_environment;
|
||||||
|
copy.current_node = current_node;
|
||||||
|
copy.function_name = function_name;
|
||||||
|
copy.this_value = this_value;
|
||||||
|
copy.is_strict_mode = is_strict_mode;
|
||||||
|
|
||||||
|
return copy;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,6 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
||||||
* Copyright (c) 2020-2021, Linus Groh <linusg@serenityos.org>
|
* Copyright (c) 2020-2021, Linus Groh <linusg@serenityos.org>
|
||||||
|
* Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-2-Clause
|
* SPDX-License-Identifier: BSD-2-Clause
|
||||||
*/
|
*/
|
||||||
|
@ -21,34 +22,12 @@ using ScriptOrModule = Variant<Empty, NonnullGCPtr<Script>, NonnullGCPtr<Module>
|
||||||
|
|
||||||
// 9.4 Execution Contexts, https://tc39.es/ecma262/#sec-execution-contexts
|
// 9.4 Execution Contexts, https://tc39.es/ecma262/#sec-execution-contexts
|
||||||
struct ExecutionContext {
|
struct ExecutionContext {
|
||||||
explicit ExecutionContext(Heap& heap)
|
explicit ExecutionContext(Heap& heap);
|
||||||
: arguments(heap)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
[[nodiscard]] ExecutionContext copy() const
|
[[nodiscard]] ExecutionContext copy() const;
|
||||||
{
|
|
||||||
ExecutionContext copy { arguments };
|
|
||||||
|
|
||||||
copy.function = function;
|
|
||||||
copy.realm = realm;
|
|
||||||
copy.script_or_module = script_or_module;
|
|
||||||
copy.lexical_environment = lexical_environment;
|
|
||||||
copy.variable_environment = variable_environment;
|
|
||||||
copy.private_environment = private_environment;
|
|
||||||
copy.current_node = current_node;
|
|
||||||
copy.function_name = function_name;
|
|
||||||
copy.this_value = this_value;
|
|
||||||
copy.is_strict_mode = is_strict_mode;
|
|
||||||
|
|
||||||
return copy;
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
explicit ExecutionContext(MarkedVector<Value> existing_arguments)
|
explicit ExecutionContext(MarkedVector<Value> existing_arguments);
|
||||||
: arguments(move(existing_arguments))
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
FunctionObject* function { nullptr }; // [[Function]]
|
FunctionObject* function { nullptr }; // [[Function]]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue