Changeset 243955 in webkit


Ignore:
Timestamp:
Apr 5, 2019 5:05:32 PM (5 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rolling out r243665.

Caused iOS JSC tests to exit with an exception.

Reverted changeset:

"Assertion failed in JSC::createError"
https://bugs.webkit.org/show_bug.cgi?id=196305
https://trac.webkit.org/changeset/243665

Location:
trunk
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r243948 r243955  
     12019-04-05  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Unreviewed, rolling out r243665.
     4
     5        Caused iOS JSC tests to exit with an exception.
     6
     7        Reverted changeset:
     8
     9        "Assertion failed in JSC::createError"
     10        https://bugs.webkit.org/show_bug.cgi?id=196305
     11        https://trac.webkit.org/changeset/243665
     12
    1132019-04-05  Yusuke Suzuki  <ysuzuki@apple.com>
    214
  • trunk/Source/JavaScriptCore/ChangeLog

    r243948 r243955  
     12019-04-05  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Unreviewed, rolling out r243665.
     4
     5        Caused iOS JSC tests to exit with an exception.
     6
     7        Reverted changeset:
     8
     9        "Assertion failed in JSC::createError"
     10        https://bugs.webkit.org/show_bug.cgi?id=196305
     11        https://trac.webkit.org/changeset/243665
     12
    1132019-04-05  Yusuke Suzuki  <ysuzuki@apple.com>
    214
  • trunk/Source/JavaScriptCore/runtime/ExceptionHelpers.cpp

    r243665 r243955  
    276276
    277277    String valueDescription = errorDescriptionForValue(exec, value);
    278     if (scope.exception() || !valueDescription) {
     278    ASSERT(scope.exception() || !!valueDescription);
     279    if (!valueDescription) {
    279280        scope.clearException();
    280281        return createOutOfMemoryError(exec);
Note: See TracChangeset for help on using the changeset viewer.