| 
									
										
										
										
											2021-10-13 21:08:48 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2021, Linus Groh <linusg@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/FunctionObject.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/Realm.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace JS { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class WrappedFunction final : public FunctionObject { | 
					
						
							|  |  |  |     JS_OBJECT(WrappedFunction, FunctionObject); | 
					
						
							| 
									
										
										
										
											2023-11-19 09:45:05 +01:00
										 |  |  |     JS_DECLARE_ALLOCATOR(WrappedFunction); | 
					
						
							| 
									
										
										
										
											2021-10-13 21:08:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2022-12-13 20:49:51 +00:00
										 |  |  |     static ThrowCompletionOr<NonnullGCPtr<WrappedFunction>> create(Realm&, Realm& caller_realm, FunctionObject& target_function); | 
					
						
							| 
									
										
										
										
											2021-10-13 21:08:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     virtual ~WrappedFunction() = default; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-09 10:06:40 +00:00
										 |  |  |     virtual ThrowCompletionOr<Value> internal_call(Value this_argument, MarkedVector<Value> arguments_list) override; | 
					
						
							| 
									
										
										
										
											2021-10-13 21:08:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // FIXME: Remove this (and stop inventing random internal slots that shouldn't exist, jeez)
 | 
					
						
							| 
									
										
										
										
											2023-02-26 16:09:02 -07:00
										 |  |  |     virtual DeprecatedFlyString const& name() const override { return m_wrapped_target_function->name(); } | 
					
						
							| 
									
										
										
										
											2021-10-13 21:08:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-26 16:09:02 -07:00
										 |  |  |     virtual Realm* realm() const override { return m_realm; } | 
					
						
							| 
									
										
										
										
											2021-10-13 21:08:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-31 12:13:33 +02:00
										 |  |  |     FunctionObject const& wrapped_target_function() const { return m_wrapped_target_function; } | 
					
						
							|  |  |  |     FunctionObject& wrapped_target_function() { return m_wrapped_target_function; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-13 21:08:48 +01:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2022-08-28 23:51:28 +02:00
										 |  |  |     WrappedFunction(Realm&, FunctionObject&, Object& prototype); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-13 21:08:48 +01:00
										 |  |  |     virtual void visit_edges(Visitor&) override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Internal Slots of Wrapped Function Exotic Objects, https://tc39.es/proposal-shadowrealm/#table-internal-slots-of-wrapped-function-exotic-objects
 | 
					
						
							| 
									
										
										
										
											2023-02-26 16:09:02 -07:00
										 |  |  |     NonnullGCPtr<FunctionObject> m_wrapped_target_function; // [[WrappedTargetFunction]]
 | 
					
						
							|  |  |  |     NonnullGCPtr<Realm> m_realm;                            // [[Realm]]
 | 
					
						
							| 
									
										
										
										
											2021-10-13 21:08:48 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-31 12:13:33 +02:00
										 |  |  | ThrowCompletionOr<Value> ordinary_wrapped_function_call(WrappedFunction const&, Value this_argument, MarkedVector<Value> const& arguments_list); | 
					
						
							|  |  |  | void prepare_for_wrapped_function_call(WrappedFunction const&, ExecutionContext& callee_context); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-13 21:08:48 +01:00
										 |  |  | } |