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

Side by Side Diff: test/debugger/debug/debug-compile-optimized.js

Issue 2653753007: [tests] Cleanup tests that use assertOptimized()/assertUnoptimized(). (Closed)
Patch Set: Addressing comments Created 3 years, 11 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/flag-definitions.h ('k') | test/debugger/debug/debug-evaluate-nested-let.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --crankshaft
5 6
6 Debug = debug.Debug; 7 Debug = debug.Debug;
7 8
8 Debug.setListener(function() {}); 9 Debug.setListener(function() {});
9 10
10 function f() {} 11 function f() {}
11 f(); 12 f();
12 f(); 13 f();
13 %OptimizeFunctionOnNextCall(f); 14 %OptimizeFunctionOnNextCall(f);
14 f(); 15 f();
15 assertOptimized(f); 16 assertOptimized(f);
16 17
17 Debug.setListener(null); 18 Debug.setListener(null);
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | test/debugger/debug/debug-evaluate-nested-let.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698