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

Side by Side Diff: test/mjsunit/es6/generators-mirror.js

Issue 760303002: Expose generator object internal properties via mirrors. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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/mirror-debugger.js ('k') | no next file » | 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: --expose-debug-as debug 5 // Flags: --expose-debug-as debug
6 // Test the mirror object for functions. 6 // Test the mirror object for functions.
7 7
8 function *generator(f) { 8 function *generator(f) {
9 "use strict"; 9 "use strict";
10 yield; 10 yield;
11 f(); 11 f();
12 yield; 12 yield;
13 } 13 }
14 14
15 function MirrorRefCache(json_refs) { 15 function MirrorRefCache(json_refs) {
16 var tmp = eval('(' + json_refs + ')'); 16 var tmp = eval('(' + json_refs + ')');
17 this.refs_ = []; 17 this.refs_ = [];
18 for (var i = 0; i < tmp.length; i++) { 18 for (var i = 0; i < tmp.length; i++) {
19 this.refs_[tmp[i].handle] = tmp[i]; 19 this.refs_[tmp[i].handle] = tmp[i];
20 } 20 }
21 } 21 }
22 22
23 MirrorRefCache.prototype.lookup = function(handle) { 23 MirrorRefCache.prototype.lookup = function(handle) {
24 return this.refs_[handle]; 24 return this.refs_[handle];
25 } 25 }
26 26
27 function TestGeneratorMirror(g, test) { 27 function TestGeneratorMirror(g, status, line, column, receiver) {
28 // Create mirror and JSON representation. 28 // Create mirror and JSON representation.
29 var mirror = debug.MakeMirror(g); 29 var mirror = debug.MakeMirror(g);
30 var serializer = debug.MakeMirrorSerializer(); 30 var serializer = debug.MakeMirrorSerializer();
31 var json = JSON.stringify(serializer.serializeValue(mirror)); 31 var json = JSON.stringify(serializer.serializeValue(mirror));
32 var refs = new MirrorRefCache( 32 var refs = new MirrorRefCache(
33 JSON.stringify(serializer.serializeReferencedObjects())); 33 JSON.stringify(serializer.serializeReferencedObjects()));
34 34
35 // Check the mirror hierachy. 35 // Check the mirror hierachy.
36 assertTrue(mirror instanceof debug.Mirror); 36 assertTrue(mirror instanceof debug.Mirror);
37 assertTrue(mirror instanceof debug.ValueMirror); 37 assertTrue(mirror instanceof debug.ValueMirror);
38 assertTrue(mirror instanceof debug.ObjectMirror); 38 assertTrue(mirror instanceof debug.ObjectMirror);
39 assertTrue(mirror instanceof debug.GeneratorMirror); 39 assertTrue(mirror instanceof debug.GeneratorMirror);
40 40
41 // Check the mirror properties. 41 // Check the mirror properties.
42 assertTrue(mirror.isGenerator()); 42 assertTrue(mirror.isGenerator());
43 assertEquals('generator', mirror.type()); 43 assertEquals('generator', mirror.type());
44 assertFalse(mirror.isPrimitive()); 44 assertFalse(mirror.isPrimitive());
45 assertEquals('Generator', mirror.className()); 45 assertEquals('Generator', mirror.className());
46 46
47 assertTrue(mirror.receiver().isUndefined()); 47 assertEquals(receiver, mirror.receiver().value());
48 assertEquals(generator, mirror.func().value()); 48 assertEquals(generator, mirror.func().value());
49 49
50 test(mirror); 50 assertEquals(status, mirror.status());
51
52 // Note that line numbers are 0-based, not 1-based.
53 var loc = mirror.sourceLocation();
54 if (status === 'suspended') {
55 assertTrue(!!loc);
56 assertEquals(line, loc.line);
57 assertEquals(column, loc.column);
58 } else {
59 assertEquals(undefined, loc);
60 }
61
62 TestInternalProperties(mirror, status, receiver);
51 } 63 }
52 64
53 var iter = generator(function () { 65 function TestInternalProperties(mirror, status, receiver) {
54 assertEquals('running', debug.MakeMirror(iter).status()); 66 var properties = mirror.internalProperties();
55 }) 67 assertEquals(3, properties.length);
56 68 assertEquals("[[GeneratorStatus]]", properties[0].name());
57 // Note that line numbers are 0-based, not 1-based. 69 assertEquals(status, properties[0].value().value());
58 function assertSourceLocation(loc, line, column) { 70 assertEquals("[[GeneratorFunction]]", properties[1].name());
59 assertEquals(line, loc.line); 71 assertEquals(generator, properties[1].value().value());
60 assertEquals(column, loc.column); 72 assertEquals("[[GeneratorReceiver]]", properties[2].name());
73 assertEquals(receiver, properties[2].value().value());
61 } 74 }
62 75
63 TestGeneratorMirror(iter, function (mirror) { 76 var iter = generator(function() {
64 assertEquals('suspended', mirror.status()) 77 var mirror = debug.MakeMirror(iter);
65 assertSourceLocation(mirror.sourceLocation(), 7, 19); 78 assertEquals('running', mirror.status());
79 assertEquals(undefined, mirror.sourceLocation());
80 TestInternalProperties(mirror, 'running');
66 }); 81 });
67 82
83 TestGeneratorMirror(iter, 'suspended', 7, 19);
84
68 iter.next(); 85 iter.next();
69 TestGeneratorMirror(iter, function (mirror) { 86 TestGeneratorMirror(iter, 'suspended', 9, 2);
70 assertEquals('suspended', mirror.status()) 87
71 assertSourceLocation(mirror.sourceLocation(), 9, 2); 88 iter.next();
89 TestGeneratorMirror(iter, 'suspended', 11, 2);
90
91 iter.next();
92 TestGeneratorMirror(iter, 'closed');
93
94 // Test generator with receiver.
95 var obj = {foo: 42};
96 var iter2 = generator.call(obj, function() {
97 var mirror = debug.MakeMirror(iter2);
98 assertEquals('running', mirror.status());
99 assertEquals(undefined, mirror.sourceLocation());
100 TestInternalProperties(mirror, 'running', obj);
72 }); 101 });
73 102
74 iter.next(); 103 TestGeneratorMirror(iter2, 'suspended', 7, 19, obj);
75 TestGeneratorMirror(iter, function (mirror) {
76 assertEquals('suspended', mirror.status())
77 assertSourceLocation(mirror.sourceLocation(), 11, 2);
78 });
79 104
80 iter.next(); 105 iter2.next();
81 TestGeneratorMirror(iter, function (mirror) { 106 TestGeneratorMirror(iter2, 'suspended', 9, 2, obj);
82 assertEquals('closed', mirror.status()) 107
83 assertEquals(undefined, mirror.sourceLocation()); 108 iter2.next();
84 }); 109 TestGeneratorMirror(iter2, 'suspended', 11, 2, obj);
110
111 iter2.next();
112 TestGeneratorMirror(iter2, 'closed', 0, 0, obj);
OLDNEW
« no previous file with comments | « src/mirror-debugger.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698