• adamk's avatar
    [intl] Clean up function name handling in AddBoundMethod · 54ce1935
    adamk authored
    AddBoundMethod, in i18n.js, returns functions all of which share the
    same backing SharedFunctionInfo, which means that its calls to
    InstallGetter were causing all such functions to have a single name
    (that of the last caller, "get breakType").
    
    This patch skips calling InstallGetter and instead directly calls
    %DefineGetterPropertyUnchecked, which itself sets the name property
    on the JSFunction instance (it knows how to do this in order to handle
    getters that have computed property names).
    
    Also takes care of a TODO having to do with the inner boundMethod:
    its name is now made empty, by using a new macro that gets around
    ES2015's function name inference.
    
    Finally, removes a redundant %FunctionRemovePrototype: arrow functions
    have no prototypes to begin with.
    
    R=littledan@chromium.org
    BUG=v8:4778
    
    Review-Url: https://codereview.chromium.org/2109223002
    Cr-Commit-Position: refs/heads/master@{#37459}
    54ce1935
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...
harmony-async-await.js Loading commit data...
harmony-atomics.js Loading commit data...
harmony-sharedarraybuffer.js Loading commit data...
harmony-simd.js Loading commit data...
harmony-string-padding.js Loading commit data...
i18n.js Loading commit data...
icu-case-mapping.js Loading commit data...
intl-extra.js Loading commit data...
iterator-prototype.js Loading commit data...
macros.py Loading commit data...
math.js Loading commit data...
messages.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...
v8natives.js Loading commit data...
weak-collection.js Loading commit data...