• littledan's avatar
    Base the right RegExp brand checks on Symbol.match · e99d2929
    littledan authored
    The ES2015 specification requires that String.prototype.startsWith,
    String.prototype.endsWith and String.prototype.includes use the IsRegExp
    internal algorithm to determine whether to throw a TypeError to prevent
    a RegExp from being accidentally cast to a String for those methods.
    That internal algorithm checks the presence/truthiness of Symbol.match
    to make its determination. This patch switches the builtins to use
    this correct test, rather than checking for the [[RegExpMatcher]]
    internal slot as the builtins previously did.
    
    R=yangguo
    
    Review URL: https://codereview.chromium.org/1762183002
    
    Cr-Commit-Position: refs/heads/master@{#34547}
    e99d2929
Name
Last commit
Last update
..
OWNERS Loading commit data...
array-iterator.js Loading commit data...
array.js Loading commit data...
arraybuffer.js Loading commit data...
collection-iterator.js Loading commit data...
collection.js Loading commit data...
generator.js Loading commit data...
harmony-atomics.js Loading commit data...
harmony-object-observe.js Loading commit data...
harmony-regexp.js Loading commit data...
harmony-sharedarraybuffer.js Loading commit data...
harmony-simd.js Loading commit data...
harmony-species.js Loading commit data...
harmony-unicode-regexps.js Loading commit data...
i18n.js Loading commit data...
iterator-prototype.js Loading commit data...
json.js Loading commit data...
macros.py Loading commit data...
math.js Loading commit data...
messages.js Loading commit data...
object-observe.js Loading commit data...
prologue.js Loading commit data...
promise-extra.js Loading commit data...
promise.js Loading commit data...
proxy.js Loading commit data...
regexp.js Loading commit data...
runtime.js Loading commit data...
spread.js Loading commit data...
string-iterator.js Loading commit data...
string.js Loading commit data...
symbol.js Loading commit data...
templates.js Loading commit data...
typedarray.js Loading commit data...
uri.js Loading commit data...
v8natives.js Loading commit data...
weak-collection.js Loading commit data...