OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "core/dom/ModulatorImpl.h" | 5 #include "core/dom/ModulatorImpl.h" |
6 | 6 |
7 #include "core/dom/Document.h" | 7 #include "core/dom/Document.h" |
8 #include "core/dom/ExecutionContext.h" | 8 #include "core/dom/ExecutionContext.h" |
9 #include "core/dom/ModuleMap.h" | 9 #include "core/dom/ModuleMap.h" |
10 #include "core/dom/ModuleScript.h" | 10 #include "core/dom/ModuleScript.h" |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 Vector<String> ModulatorImpl::ModuleRequestsFromScriptModule( | 131 Vector<String> ModulatorImpl::ModuleRequestsFromScriptModule( |
132 ScriptModule script_module) { | 132 ScriptModule script_module) { |
133 ScriptState::Scope scope(script_state_.Get()); | 133 ScriptState::Scope scope(script_state_.Get()); |
134 return script_module.ModuleRequests(script_state_.Get()); | 134 return script_module.ModuleRequests(script_state_.Get()); |
135 } | 135 } |
136 | 136 |
137 inline ExecutionContext* ModulatorImpl::GetExecutionContext() const { | 137 inline ExecutionContext* ModulatorImpl::GetExecutionContext() const { |
138 return ExecutionContext::From(script_state_.Get()); | 138 return ExecutionContext::From(script_state_.Get()); |
139 } | 139 } |
140 | 140 |
| 141 void ModulatorImpl::ExecuteModule(const ModuleScript* module_script) { |
| 142 // https://html.spec.whatwg.org/#run-a-module-script |
| 143 |
| 144 // 1. "Let settings be the settings object of s." |
| 145 // The settings object is |this|. |
| 146 |
| 147 // 2. "Check if we can run script with settings. |
| 148 // If this returns "do not run" then abort these steps." |
| 149 if (!GetExecutionContext()->CanExecuteScripts(kAboutToExecuteScript)) |
| 150 return; |
| 151 |
| 152 ScriptState::Scope scope(script_state_.Get()); |
| 153 |
| 154 // 3. "If s's instantiation state is "errored", then report the exception |
| 155 // given by s's instantiation error for s and abort these steps." |
| 156 ModuleInstantiationState instantiationState = |
| 157 module_script->InstantiationState(); |
| 158 if (instantiationState == ModuleInstantiationState::kErrored) { |
| 159 v8::Isolate* isolate = script_state_->GetIsolate(); |
| 160 ScriptModule::ReportException( |
| 161 script_state_.Get(), module_script->CreateInstantiationError(isolate), |
| 162 module_script->BaseURL().GetString()); |
| 163 return; |
| 164 } |
| 165 |
| 166 // 4. "Assert: s's instantiation state is "instantiated" (and thus its |
| 167 // module record is not null)." |
| 168 CHECK_EQ(instantiationState, ModuleInstantiationState::kInstantiated); |
| 169 |
| 170 // 5. "Let record be s's module record." |
| 171 const ScriptModule& record = module_script->Record(); |
| 172 CHECK(!record.IsNull()); |
| 173 |
| 174 // 6.--9.? |
| 175 record.Evaluate(script_state_.Get()); |
| 176 } |
| 177 |
141 DEFINE_TRACE(ModulatorImpl) { | 178 DEFINE_TRACE(ModulatorImpl) { |
142 Modulator::Trace(visitor); | 179 Modulator::Trace(visitor); |
143 visitor->Trace(fetcher_); | 180 visitor->Trace(fetcher_); |
144 visitor->Trace(map_); | 181 visitor->Trace(map_); |
145 visitor->Trace(loader_registry_); | 182 visitor->Trace(loader_registry_); |
146 visitor->Trace(tree_linker_registry_); | 183 visitor->Trace(tree_linker_registry_); |
147 visitor->Trace(script_module_resolver_); | 184 visitor->Trace(script_module_resolver_); |
148 } | 185 } |
149 | 186 |
150 DEFINE_TRACE_WRAPPERS(ModulatorImpl) { | 187 DEFINE_TRACE_WRAPPERS(ModulatorImpl) { |
151 visitor->TraceWrappers(map_); | 188 visitor->TraceWrappers(map_); |
152 } | 189 } |
153 | 190 |
154 } // namespace blink | 191 } // namespace blink |
OLD | NEW |