| 
									
										
										
										
											2022-10-03 21:01:59 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2022, networkException <networkexception@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <LibJS/SourceTextModule.h>
 | 
					
						
							|  |  |  | #include <LibWeb/HTML/Scripting/Script.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web::HTML { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://html.spec.whatwg.org/multipage/webappapis.html#module-script
 | 
					
						
							|  |  |  | class ModuleScript : public Script { | 
					
						
							|  |  |  |     JS_CELL(ModuleScript, Script); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     virtual ~ModuleScript() override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2022-12-04 18:02:33 +00:00
										 |  |  |     ModuleScript(AK::URL base_url, DeprecatedString filename, EnvironmentSettingsObject& environment_settings_object); | 
					
						
							| 
									
										
										
										
											2022-10-03 21:01:59 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class JavaScriptModuleScript final : public ModuleScript { | 
					
						
							|  |  |  |     JS_CELL(JavaScriptModuleScript, ModuleScript); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     virtual ~JavaScriptModuleScript() override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-15 20:12:44 +01:00
										 |  |  |     static WebIDL::ExceptionOr<JS::GCPtr<JavaScriptModuleScript>> create(DeprecatedString const& filename, StringView source, EnvironmentSettingsObject&, AK::URL base_url); | 
					
						
							| 
									
										
										
										
											2022-10-03 21:01:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     enum class PreventErrorReporting { | 
					
						
							|  |  |  |         Yes, | 
					
						
							|  |  |  |         No | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     JS::Promise* run(PreventErrorReporting = PreventErrorReporting::No); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     JS::SourceTextModule const* record() const { return m_record.ptr(); }; | 
					
						
							|  |  |  |     JS::SourceTextModule* record() { return m_record.ptr(); }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2022-12-04 18:02:33 +00:00
										 |  |  |     JavaScriptModuleScript(AK::URL base_url, DeprecatedString filename, EnvironmentSettingsObject& environment_settings_object); | 
					
						
							| 
									
										
										
										
											2022-10-03 21:01:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     virtual void visit_edges(JS::Cell::Visitor&) override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     JS::GCPtr<JS::SourceTextModule> m_record; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     size_t m_fetch_internal_request_count { 0 }; | 
					
						
							|  |  |  |     size_t m_completed_fetch_internal_request_count { 0 }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Function<void(JavaScriptModuleScript const*)> m_completed_fetch_internal_callback; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |