Changeset 252304 in webkit


Ignore:
Timestamp:
Nov 8, 2019 8:09:36 PM (4 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewed, fix debug JSC tests failures due to missing exception check
https://bugs.webkit.org/show_bug.cgi?id=203936

  • tools/JSDollarVM.cpp:

(JSC::functionCallWithStackSize):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r252302 r252304  
     12019-11-08  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        Unreviewed, fix debug JSC tests failures due to missing exception check
     4        https://bugs.webkit.org/show_bug.cgi?id=203936
     5
     6        * tools/JSDollarVM.cpp:
     7        (JSC::functionCallWithStackSize):
     8
    192019-11-08  Yusuke Suzuki  <ysuzuki@apple.com>
    210
  • trunk/Source/JavaScriptCore/tools/JSDollarVM.cpp

    r252239 r252304  
    20462046        return throwVMError(globalObject, throwScope, "arg1 should be a number");
    20472047
    2048     JSFunction* function = jsCast<JSFunction*>(arg0.toObject(globalObject));
     2048    JSFunction* function = jsCast<JSFunction*>(arg0);
    20492049    size_t desiredStackSize = arg1.asNumber();
    20502050
Note: See TracChangeset for help on using the changeset viewer.