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

Side by Side Diff: test/debugger/debug/debug-print.js

Issue 2466273005: [debugger] Further stepping support in test wrapper (Closed)
Patch Set: Move more tests Created 4 years, 1 month 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
OLDNEW
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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: --allow-natives-syntax
6 5
7 // Make sure printing different element kinds doesn't crash. 6 // Make sure printing different element kinds doesn't crash.
8 7
9 var array; 8 var array;
10 var obj = {}; 9 var obj = {};
11 10
12 array = []; 11 array = [];
13 %DebugPrint(array); 12 %DebugPrint(array);
14 13
15 // FAST_SMI_ELEMENTS 14 // FAST_SMI_ELEMENTS
(...skipping 22 matching lines...) Expand all
38 %DebugPrint(array); 37 %DebugPrint(array);
39 38
40 // FAST_HOLEY_DOUBLE_ELEMENTS 39 // FAST_HOLEY_DOUBLE_ELEMENTS
41 array[100] = 1.2; 40 array[100] = 1.2;
42 array[101] = 1.2; 41 array[101] = 1.2;
43 %DebugPrint(array); 42 %DebugPrint(array);
44 43
45 // DICTIONARY_ELEMENTS 44 // DICTIONARY_ELEMENTS
46 %NormalizeElements(array); 45 %NormalizeElements(array);
47 %DebugPrint(array); 46 %DebugPrint(array);
OLDNEW
« no previous file with comments | « test/debugger/debug/debug-optimize.js ('k') | test/debugger/debug/debug-stack-check-position.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698