• littledan's avatar
    Implement TypedArray(typedarray) constructor · 2fa1c884
    littledan authored
    The ES2016 draft spec defines a sort of fast path for constructing
    a TypedArray based on another TypedArray. This patch implements that
    alternative path in TypedArray construction. It is verified by
    test262 tests, which now pass. This patch also has a slight cleanup
    of TypedArray code by using a macro for TypedArray type checks, as
    is done for other types.
    
    This patch includes a minor spec violation: In the same-type case, the
    spec indicates that the underlying ArrayBuffer should be copied until
    the end, and this is fixed up by making the [[ArrayLength]] shorter.
    This is observable with the buffer getter. This patch just copies the
    used part of the underlying ArrayBuffer.
    
    R=adamk
    BUG=v8:4726
    LOG=Y
    
    Review URL: https://codereview.chromium.org/1754593003
    
    Cr-Commit-Position: refs/heads/master@{#34443}
    2fa1c884
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...