21f796df44
Preparing the value for storing into a typed array is user visible operation in some cases (for ex: calling ToNumber). To avoid doing this conversion twice pass the converted to the runtime when bailing out from the handlers. Bug: chromium:981236 Change-Id: I3de23d317d22cd6c201fe8a4db30014f4cf76251 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1692932 Commit-Queue: Mythri Alle <mythria@chromium.org> Reviewed-by: Jakob Gruber <jgruber@chromium.org> Reviewed-by: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/master@{#62879}
18 lines
389 B
JavaScript
18 lines
389 B
JavaScript
// Copyright 2019 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
var count = 0;
|
|
function keyedSta(a) {
|
|
a[0] = {
|
|
valueOf() {
|
|
count += 1;
|
|
return 42n;
|
|
}
|
|
};
|
|
};
|
|
|
|
array1 = keyedSta(new BigInt64Array(1));
|
|
var r = keyedSta(new BigInt64Array());
|
|
assertEquals(count, 2);
|