| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-01 12:24:46 +02:00
										 |  |  |     virtual Optional<Variable> get_from_environment(FlyString const&) const override; | 
					
						
							| 
									
										
										
										
											2021-07-02 00:14:38 +02:00
										 |  |  |     virtual bool put_into_environment(FlyString const&, Variable) override; | 
					
						
							| 
									
										
										
										
											2021-07-01 12:24:46 +02:00
										 |  |  |     virtual bool delete_from_environment(FlyString const&) override; | 
					
						
							| 
									
										
										
										
											2021-06-22 17:16:08 +02:00
										 |  |  |     virtual bool has_this_binding() const final { return true; } | 
					
						
							|  |  |  |     virtual Value get_this_binding(GlobalObject&) const final; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-23 12:26:37 +02:00
										 |  |  |     virtual bool has_binding(FlyString const& name) const override; | 
					
						
							|  |  |  |     virtual void create_mutable_binding(GlobalObject&, FlyString const& name, bool can_be_deleted) override; | 
					
						
							|  |  |  |     virtual void create_immutable_binding(GlobalObject&, FlyString const& name, bool strict) override; | 
					
						
							|  |  |  |     virtual void initialize_binding(GlobalObject&, FlyString const& name, Value) override; | 
					
						
							|  |  |  |     virtual void set_mutable_binding(GlobalObject&, FlyString const& name, Value, bool strict) override; | 
					
						
							|  |  |  |     virtual Value get_binding_value(GlobalObject&, FlyString const& name, bool strict) override; | 
					
						
							|  |  |  |     virtual bool delete_binding(GlobalObject&, FlyString const& name) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  |     bool has_restricted_global_property(FlyString const& name) const; | 
					
						
							|  |  |  |     bool can_declare_global_var(FlyString const& name) const; | 
					
						
							|  |  |  |     bool can_declare_global_function(FlyString const& name) const; | 
					
						
							|  |  |  |     void create_global_var_binding(FlyString const& name, bool can_be_deleted); | 
					
						
							|  |  |  |     void create_global_function_binding(FlyString const& name, Value, bool can_be_deleted); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } |