| 
									
										
										
										
											2021-09-09 18:03:01 +02:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2024-10-04 13:19:50 +02:00
										 |  |  |  * Copyright (c) 2021-2023, Andreas Kling <andreas@ladybird.org> | 
					
						
							| 
									
										
										
										
											2021-09-09 18:03:01 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-05 14:32:33 +02:00
										 |  |  | #include <LibJS/Heap/Cell.h>
 | 
					
						
							| 
									
										
										
										
											2022-10-02 23:17:33 +02:00
										 |  |  | #include <LibJS/Script.h>
 | 
					
						
							| 
									
										
										
										
											2024-03-18 16:22:27 +13:00
										 |  |  | #include <LibURL/URL.h>
 | 
					
						
							| 
									
										
										
										
											2022-06-27 19:50:40 +01:00
										 |  |  | #include <LibWeb/Forward.h>
 | 
					
						
							| 
									
										
										
										
											2021-09-09 18:03:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::HTML { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://html.spec.whatwg.org/multipage/webappapis.html#concept-script
 | 
					
						
							| 
									
										
										
										
											2024-10-25 16:27:26 +13:00
										 |  |  | // https://whatpr.org/html/9893/webappapis.html#concept-script
 | 
					
						
							| 
									
										
										
										
											2022-10-02 23:17:33 +02:00
										 |  |  | class Script | 
					
						
							|  |  |  |     : public JS::Cell | 
					
						
							|  |  |  |     , public JS::Script::HostDefined { | 
					
						
							| 
									
										
										
										
											2024-11-15 04:01:23 +13:00
										 |  |  |     GC_CELL(Script, JS::Cell); | 
					
						
							|  |  |  |     GC_DECLARE_ALLOCATOR(Script); | 
					
						
							| 
									
										
										
										
											2022-09-05 14:32:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 18:03:01 +02:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2022-09-05 14:32:33 +02:00
										 |  |  |     virtual ~Script() override; | 
					
						
							| 
									
										
										
										
											2021-09-09 18:03:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-16 15:53:04 +13:00
										 |  |  |     Optional<URL::URL> const& base_url() const { return m_base_url; } | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     ByteString const& filename() const { return m_filename; } | 
					
						
							| 
									
										
										
										
											2021-09-09 18:03:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-25 16:27:26 +13:00
										 |  |  |     JS::Realm& realm() { return m_realm; } | 
					
						
							|  |  |  |     EnvironmentSettingsObject& settings_object(); | 
					
						
							| 
									
										
										
										
											2022-06-27 19:50:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 19:05:56 +02:00
										 |  |  |     [[nodiscard]] JS::Value error_to_rethrow() const { return m_error_to_rethrow; } | 
					
						
							|  |  |  |     void set_error_to_rethrow(JS::Value value) { m_error_to_rethrow = value; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [[nodiscard]] JS::Value parse_error() const { return m_parse_error; } | 
					
						
							|  |  |  |     void set_parse_error(JS::Value value) { m_parse_error = value; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 18:03:01 +02:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2025-02-16 15:53:04 +13:00
										 |  |  |     Script(Optional<URL::URL> base_url, ByteString filename, JS::Realm&); | 
					
						
							| 
									
										
										
										
											2021-09-09 18:03:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 19:05:56 +02:00
										 |  |  |     virtual void visit_edges(Visitor&) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 18:03:01 +02:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2025-04-18 10:23:02 +02:00
										 |  |  |     virtual bool is_script() const final { return true; } | 
					
						
							| 
									
										
										
										
											2022-10-02 23:17:33 +02:00
										 |  |  |     virtual void visit_host_defined_self(JS::Cell::Visitor&) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-16 15:53:04 +13:00
										 |  |  |     Optional<URL::URL> m_base_url; | 
					
						
							| 
									
										
										
										
											2023-12-16 17:49:34 +03:30
										 |  |  |     ByteString m_filename; | 
					
						
							| 
									
										
										
										
											2024-11-15 04:01:23 +13:00
										 |  |  |     GC::Ref<JS::Realm> m_realm; | 
					
						
							| 
									
										
										
										
											2023-05-18 19:05:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // https://html.spec.whatwg.org/multipage/webappapis.html#concept-script-parse-error
 | 
					
						
							|  |  |  |     JS::Value m_parse_error; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // https://html.spec.whatwg.org/multipage/webappapis.html#concept-script-error-to-rethrow
 | 
					
						
							|  |  |  |     JS::Value m_error_to_rethrow; | 
					
						
							| 
									
										
										
										
											2021-09-09 18:03:01 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2025-04-18 10:23:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | template<> | 
					
						
							|  |  |  | inline bool JS::Script::HostDefined::fast_is<Web::HTML::Script>() const { return is_script(); } |