Changeset 251418 in webkit


Ignore:
Timestamp:
Oct 21, 2019, 10:44:31 PM (5 years ago)
Author:
mark.lam@apple.com
Message:

Rolling out r251411: Fix is incorrect.
https://bugs.webkit.org/show_bug.cgi?id=203230

Not reviewed.

JSTests:

  • stress/incorrect-exception-assertion-in-operationRegExpExecNonGlobalOrSticky.js: Removed.

Source/JavaScriptCore:

  • dfg/DFGOperations.cpp:
Location:
trunk
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r251411 r251418  
     12019-10-21  Mark Lam  <mark.lam@apple.com>
     2
     3        Rolling out r251411: Fix is incorrect.
     4        https://bugs.webkit.org/show_bug.cgi?id=203230
     5
     6        Not reviewed.
     7
     8        * stress/incorrect-exception-assertion-in-operationRegExpExecNonGlobalOrSticky.js: Removed.
     9
    1102019-10-21  Mark Lam  <mark.lam@apple.com>
    211
  • trunk/Source/JavaScriptCore/ChangeLog

    r251411 r251418  
     12019-10-21  Mark Lam  <mark.lam@apple.com>
     2
     3        Rolling out r251411: Fix is incorrect.
     4        https://bugs.webkit.org/show_bug.cgi?id=203230
     5
     6        Not reviewed.
     7
     8        * dfg/DFGOperations.cpp:
     9
    1102019-10-21  Mark Lam  <mark.lam@apple.com>
    211
  • trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp

    r251411 r251418  
    12461246    MatchResult result;
    12471247    JSArray* array = createRegExpMatchesArray(vm, globalObject, string, input, regExp, lastIndex, result);
     1248    if (!array) {
     1249        ASSERT(!scope.exception());
     1250        return JSValue::encode(jsNull());
     1251    }
     1252
    12481253    RETURN_IF_EXCEPTION(scope, { });
    1249     ASSERT(array);
    1250 
    12511254    globalObject->regExpGlobalData().recordMatch(vm, globalObject, regExp, string, result);
    12521255    return JSValue::encode(array);
Note: See TracChangeset for help on using the changeset viewer.