Changeset 205276 in webkit for trunk/Source/JavaScriptCore/runtime/JSModuleLoader.cpp
- Timestamp:
- Aug 31, 2016, 7:11:43 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSModuleLoader.cpp
r204330 r205276 115 115 } 116 116 117 JS InternalPromise*JSModuleLoader::linkAndEvaluateModule(ExecState* exec, JSValue moduleKey)117 JSValue JSModuleLoader::linkAndEvaluateModule(ExecState* exec, JSValue moduleKey) 118 118 { 119 119 JSObject* function = jsCast<JSObject*>(get(exec, exec->propertyNames().builtinNames().linkAndEvaluateModulePublicName())); … … 125 125 arguments.append(moduleKey); 126 126 127 return jsCast<JSInternalPromise*>(call(exec, function, callType, callData, this, arguments));127 return call(exec, function, callType, callData, this, arguments); 128 128 } 129 129
Note:
See TracChangeset
for help on using the changeset viewer.