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

Side by Side Diff: test/mjsunit/harmony/generators-relocation.js

Issue 479543003: Stage ES6 generators (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Minor fix: remove harmony -> generators implication (staging is sufficient) Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // Flags: --expose-debug-as debug --harmony-generators
6
7 var Debug = debug.Debug;
8
9 function assertIteratorResult(value, done, result) {
10 assertEquals({value: value, done: done}, result);
11 }
12
13 function RunTest(formals_and_body, args, value1, value2) {
14 // A null listener. It isn't important what the listener does.
15 function listener(event, exec_state, event_data, data) {
16 }
17
18 // Create the generator function outside a debugging context. It will probably
19 // be lazily compiled.
20 var gen = (function*(){}).constructor.apply(null, formals_and_body);
21
22 // Instantiate the generator object.
23 var obj = gen.apply(null, args);
24
25 // Advance to the first yield.
26 assertIteratorResult(value1, false, obj.next());
27
28 // Add a breakpoint on line 3 (the second yield).
29 var bp = Debug.setBreakPoint(gen, 3);
30
31 // Enable the debugger, which should force recompilation of the generator
32 // function and relocation of the suspended generator activation.
33 Debug.setListener(listener);
34
35 // Check that the generator resumes and suspends properly.
36 assertIteratorResult(value2, false, obj.next());
37
38 // Disable debugger -- should not force recompilation.
39 Debug.clearBreakPoint(bp);
40 Debug.setListener(null);
41
42 // Run to completion.
43 assertIteratorResult(undefined, true, obj.next());
44 }
45
46 function prog(a, b, c) {
47 return a + ';\n' + 'yield ' + b + ';\n' + 'yield ' + c;
48 }
49
50 // Simple empty local scope.
51 RunTest([prog('', '1', '2')], [], 1, 2);
52
53 RunTest([prog('for (;;) break', '1', '2')], [], 1, 2);
54
55 RunTest([prog('while (0) foo()', '1', '2')], [], 1, 2);
56
57 RunTest(['a', prog('var x = 3', 'a', 'x')], [1], 1, 3);
58
59 RunTest(['a', prog('', '1', '2')], [42], 1, 2);
60
61 RunTest(['a', prog('for (;;) break', '1', '2')], [42], 1, 2);
OLDNEW
« no previous file with comments | « test/mjsunit/harmony/generators-poisoned-properties.js ('k') | test/mjsunit/harmony/generators-runtime.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698