mirror of
https://github.com/tc39/test262.git
synced 2025-07-31 01:44:54 +02:00
sourceRevisionAtLastExport: 33f2fb0e53d135f0ee17cfccd9d993eb2a6f47de targetRevisionAtLastExport: 31340cbd9add103f586d501b0c3354b7b182abc0
19 lines
596 B
JavaScript
19 lines
596 B
JavaScript
// Copyright 2018 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.
|
|
|
|
// Flags: --expose-gc
|
|
|
|
function spread(o) { return { ...o }; }
|
|
|
|
(function setupPolymorphicFeedback() {
|
|
function C1() { this.p0 = 1; }
|
|
function C2() { this.p1 = 2; this.p2 = 3; }
|
|
assertEquals({ p0: 1 }, spread(new C1));
|
|
assertEquals({ p1: 2, p2: 3 }, spread(new C2));
|
|
})();
|
|
|
|
gc(); // Clobber cached map in feedback[0], and check that we don't crash
|
|
function C3() { this.p0 = 3; }
|
|
assertEquals({ p0: 3 }, spread(new C3));
|