PR-URL: https://github.com/nodejs/node/pull/33579 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com>
35 lines
944 B
JavaScript
35 lines
944 B
JavaScript
// Copyright 2020 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.
|
|
|
|
Object.prototype[1] = 153;
|
|
|
|
(function TestSloppyStoreToReadOnlyProperty() {
|
|
function foo(prototype_frozen) {
|
|
let ar = [];
|
|
for (let i = 0; i < 3; i++) {
|
|
ar[i] = 42;
|
|
|
|
if (prototype_frozen) {
|
|
if (i == 1) {
|
|
// Attempt to overwrite read-only element should not change
|
|
// array length.
|
|
assertEquals(1, ar.length);
|
|
} else {
|
|
assertEquals(i + 1, ar.length);
|
|
}
|
|
}
|
|
}
|
|
return ar;
|
|
}
|
|
|
|
// Warm-up store IC.
|
|
assertEquals([42,42,42], foo(false));
|
|
assertEquals([42,42,42], foo(false));
|
|
assertEquals([42,42,42], foo(false));
|
|
assertEquals([42,42,42], foo(false));
|
|
Object.freeze(Object.prototype);
|
|
// Ensure IC was properly invalidated.
|
|
assertEquals([42,153,42], foo(true));
|
|
})();
|