2021-06-22 17:16:08 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-07-01 12:24:46 +02:00
|
|
|
#include <LibJS/Runtime/Environment.h>
|
2021-06-22 17:16:08 +02:00
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
2021-07-01 12:24:46 +02:00
|
|
|
class GlobalEnvironment final : public Environment {
|
|
|
|
JS_ENVIRONMENT(GlobalEnvironment, Environment);
|
2021-06-22 17:16:08 +02:00
|
|
|
|
|
|
|
public:
|
2021-09-11 19:58:27 +01:00
|
|
|
GlobalEnvironment(GlobalObject&, Object& this_value);
|
2021-06-22 17:16:08 +02:00
|
|
|
|
|
|
|
virtual bool has_this_binding() const final { return true; }
|
2021-10-09 16:52:34 +01:00
|
|
|
virtual ThrowCompletionOr<Value> get_this_binding(GlobalObject&) const final;
|
2021-06-22 17:16:08 +02:00
|
|
|
|
2021-10-09 17:07:32 +01:00
|
|
|
virtual ThrowCompletionOr<bool> has_binding(FlyString const& name, Optional<size_t>* = nullptr) const override;
|
2021-10-09 18:53:25 +01:00
|
|
|
virtual ThrowCompletionOr<void> create_mutable_binding(GlobalObject&, FlyString const& name, bool can_be_deleted) override;
|
2021-10-09 19:00:06 +01:00
|
|
|
virtual ThrowCompletionOr<void> create_immutable_binding(GlobalObject&, FlyString const& name, bool strict) override;
|
2021-10-09 19:16:24 +01:00
|
|
|
virtual ThrowCompletionOr<void> initialize_binding(GlobalObject&, FlyString const& name, Value) override;
|
2021-10-09 19:34:54 +01:00
|
|
|
virtual ThrowCompletionOr<void> set_mutable_binding(GlobalObject&, FlyString const& name, Value, bool strict) override;
|
2021-10-09 19:43:19 +01:00
|
|
|
virtual ThrowCompletionOr<Value> get_binding_value(GlobalObject&, FlyString const& name, bool strict) override;
|
2021-10-09 19:49:08 +01:00
|
|
|
virtual ThrowCompletionOr<bool> delete_binding(GlobalObject&, FlyString const& name) override;
|
2021-06-23 12:26:37 +02:00
|
|
|
|
2021-07-01 12:24:46 +02:00
|
|
|
ObjectEnvironment& object_record() { return *m_object_record; }
|
2021-09-11 19:58:27 +01:00
|
|
|
Object& global_this_value() { return *m_global_this_value; }
|
2021-07-01 12:24:46 +02:00
|
|
|
DeclarativeEnvironment& declarative_record() { return *m_declarative_record; }
|
2021-06-22 17:16:08 +02:00
|
|
|
|
2021-06-23 12:26:37 +02:00
|
|
|
bool has_var_declaration(FlyString const& name) const;
|
|
|
|
bool has_lexical_declaration(FlyString const& name) const;
|
2021-12-29 15:50:50 +01:00
|
|
|
ThrowCompletionOr<bool> has_restricted_global_property(FlyString const& name) const;
|
2021-12-29 15:54:44 +01:00
|
|
|
ThrowCompletionOr<bool> can_declare_global_var(FlyString const& name) const;
|
2021-12-29 15:56:53 +01:00
|
|
|
ThrowCompletionOr<bool> can_declare_global_function(FlyString const& name) const;
|
2021-12-29 16:00:36 +01:00
|
|
|
ThrowCompletionOr<void> create_global_var_binding(FlyString const& name, bool can_be_deleted);
|
2021-12-29 16:02:44 +01:00
|
|
|
ThrowCompletionOr<void> create_global_function_binding(FlyString const& name, Value, bool can_be_deleted);
|
2021-06-23 12:26:37 +02:00
|
|
|
|
2021-06-22 17:16:08 +02:00
|
|
|
private:
|
2021-07-01 12:24:46 +02:00
|
|
|
virtual bool is_global_environment() const override { return true; }
|
2021-06-22 17:16:08 +02:00
|
|
|
virtual void visit_edges(Visitor&) override;
|
|
|
|
|
2021-09-11 19:58:27 +01:00
|
|
|
ObjectEnvironment* m_object_record { nullptr }; // [[ObjectRecord]]
|
|
|
|
Object* m_global_this_value { nullptr }; // [[GlobalThisValue]]
|
|
|
|
DeclarativeEnvironment* m_declarative_record { nullptr }; // [[DeclarativeRecord]]
|
|
|
|
Vector<FlyString> m_var_names; // [[VarNames]]
|
2021-06-22 17:16:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2021-07-01 12:24:46 +02:00
|
|
|
inline bool Environment::fast_is<GlobalEnvironment>() const { return is_global_environment(); }
|
2021-09-11 19:58:27 +01:00
|
|
|
|
2021-06-22 17:16:08 +02:00
|
|
|
}
|