Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Side by Side Diff: test/mjsunit/regress/regress-crbug-714981.js

Issue 2854373002: Move delete-last-fast-property code from CSA to C++ (Closed)
Patch Set: addressed comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/runtime/runtime-object.cc ('k') | test/mjsunit/regress/regress-crbug-716912.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 function addProperties(o)
6 {
7 o.p1 = 1;
8 o.p2 = 2;
9 o.p3 = 3;
10 o.p4 = 4;
11 o.p5 = 5;
12 o.p6 = 6;
13 o.p7 = 7;
14 o.p8 = 8;
15 }
16 function removeProperties(o)
17 {
18 delete o.p8;
19 delete o.p7;
20 delete o.p6;
21 delete o.p5;
22 }
23 function makeO()
24 {
25 var o = { };
26 addProperties(o);
27 removeProperties(o);
28 addProperties(o);
29 }
30 for (var i = 0; i < 3; ++i) {
31 o = makeO();
32 }
OLDNEW
« no previous file with comments | « src/runtime/runtime-object.cc ('k') | test/mjsunit/regress/regress-crbug-716912.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698