Changeset 223173 in webkit for trunk/Source/JavaScriptCore/runtime/Completion.cpp
- Timestamp:
- Oct 11, 2017, 5:30:37 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Completion.cpp
r221822 r223173 188 188 189 189 // Insert the given source code to the ModuleLoader registry as the fetched registry entry. 190 globalObject->moduleLoader()->provide (exec, key, JSModuleLoader::Status::Fetch, source);190 globalObject->moduleLoader()->provideFetch(exec, key, source); 191 191 RETURN_IF_EXCEPTION(scope, rejectPromise(exec, globalObject)); 192 192 … … 228 228 // Insert the given source code to the ModuleLoader registry as the fetched registry entry. 229 229 // FIXME: Introduce JSSourceCode object to wrap around this source. 230 globalObject->moduleLoader()->provide (exec, key, JSModuleLoader::Status::Fetch, source);230 globalObject->moduleLoader()->provideFetch(exec, key, source); 231 231 RETURN_IF_EXCEPTION(scope, rejectPromise(exec, globalObject)); 232 232
Note:
See TracChangeset
for help on using the changeset viewer.