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

Side by Side Diff: test/mjsunit/es6/debug-step-into-constructor.js

Issue 1213813003: [es6] Remove harmony-classes flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove empty flags field from json Created 5 years, 5 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
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: --expose-debug-as debug --harmony-classes 5 // Flags: --expose-debug-as debug
6 6
7 'use strict'; 7 'use strict';
8 8
9 var Debug = debug.Debug 9 var Debug = debug.Debug
10 var done, stepCount; 10 var done, stepCount;
11 11
12 function listener(event, execState, eventData, data) { 12 function listener(event, execState, eventData, data) {
13 if (event == Debug.DebugEvent.Break) { 13 if (event == Debug.DebugEvent.Break) {
14 if (!done) { 14 if (!done) {
15 execState.prepareStep(Debug.StepAction.StepInto); 15 execState.prepareStep(Debug.StepAction.StepInto);
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 104
105 var bp = Debug.setBreakPoint(f, 0); 105 var bp = Debug.setBreakPoint(f, 0);
106 f(); 106 f();
107 assertEquals(4, stepCount); 107 assertEquals(4, stepCount);
108 108
109 Debug.clearBreakPoint(bp); 109 Debug.clearBreakPoint(bp);
110 })(); 110 })();
111 111
112 112
113 Debug.setListener(null); 113 Debug.setListener(null);
OLDNEW
« no previous file with comments | « test/mjsunit/es6/debug-step-into-class-extends.js ('k') | test/mjsunit/es6/regress/regress-3750.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698