Changeset 223751 in webkit


Ignore:
Timestamp:
Oct 20, 2017 2:02:20 AM (7 years ago)
Author:
Yusuke Suzuki
Message:

Unreviewed, follow up to reflect comments
https://bugs.webkit.org/show_bug.cgi?id=178340

  • runtime/JSModuleLoader.cpp:

(JSC::JSModuleLoader::notifyCompleted):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r223746 r223751  
     12017-10-20  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, follow up to reflect comments
     4        https://bugs.webkit.org/show_bug.cgi?id=178340
     5
     6        * runtime/JSModuleLoader.cpp:
     7        (JSC::JSModuleLoader::notifyCompleted):
     8
    192017-10-20  Saam Barati  <sbarati@apple.com>
    210
  • trunk/Source/JavaScriptCore/runtime/JSModuleLoader.cpp

    r223744 r223751  
    310310        return jsUndefined();
    311311
    312     Identifier moduleKey = jsValueToModuleKey(exec, key);
     312    auto moduleKey = jsValueToModuleKey(exec, key);
    313313    fetcher->notifyLoadCompleted(*moduleKey.impl());
    314314    return jsUndefined();
Note: See TracChangeset for help on using the changeset viewer.