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

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

Issue 13192004: arrange to create prototypes for generators (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Explicitly add constructor properties in generator.js Created 7 years, 8 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
(Empty)
1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 // Flags: --harmony-generators
29
30 // Test aspects of the generator runtime.
31
32 // FIXME(wingo): Replace this reference with a more official link.
33 // See:
34 // http://wiki.ecmascript.org/lib/exe/fetch.php?cache=cache&media=harmony:es6_ge nerator_object_model_3-29-13.png
35
36 function f() { }
37 function* g() { yield 1; }
38 var GeneratorFunctionPrototype = Object.getPrototypeOf(g);
39 var GeneratorFunction = GeneratorFunctionPrototype.constructor;
40 var GeneratorObjectPrototype = GeneratorFunctionPrototype.prototype;
41
42 // A generator function should have the same set of properties as any
43 // other function.
44 function TestGeneratorFunctionInstance() {
45 var f_own_property_names = Object.getOwnPropertyNames(f);
46 var g_own_property_names = Object.getOwnPropertyNames(g);
47
48 f_own_property_names.sort();
49 g_own_property_names.sort();
50
51 assertArrayEquals(f_own_property_names, g_own_property_names);
52 var i;
53 for (i = 0; i < f_own_property_names.length; i++) {
54 var prop = f_own_property_names[i];
55 var f_desc = Object.getOwnPropertyDescriptor(f, prop);
56 var g_desc = Object.getOwnPropertyDescriptor(g, prop);
57 assertEquals(f_desc.configurable, g_desc.configurable, prop);
58 assertEquals(f_desc.writable, g_desc.writable, prop);
59 assertEquals(f_desc.enumerable, g_desc.enumerable, prop);
60 }
61 }
62 TestGeneratorFunctionInstance();
63
64
65 // Generators have an additional object interposed in the chain between
66 // themselves and Function.prototype.
67 function TestGeneratorFunctionPrototype() {
68 // Sanity check.
69 assertSame(Object.getPrototypeOf(f), Function.prototype);
70 assertFalse(GeneratorFunctionPrototype === Function.prototype);
71 assertSame(Function.prototype,
72 Object.getPrototypeOf(GeneratorFunctionPrototype));
73 assertSame(GeneratorFunctionPrototype,
74 Object.getPrototypeOf(function* () {}));
75 }
76 TestGeneratorFunctionPrototype();
77
78
79 // Functions that we associate with generator objects are actually defined by
80 // a common prototype.
81 function TestGeneratorObjectPrototype() {
82 assertSame(Object.prototype,
83 Object.getPrototypeOf(GeneratorObjectPrototype));
84 assertSame(GeneratorObjectPrototype,
85 Object.getPrototypeOf((function*(){yield 1}).prototype));
86
87 var expected_property_names = ["next", "send", "throw", "close",
88 "constructor"];
89 var found_property_names =
90 Object.getOwnPropertyNames(GeneratorObjectPrototype);
91
92 expected_property_names.sort();
93 found_property_names.sort();
94
95 assertArrayEquals(expected_property_names, found_property_names);
96 }
97 TestGeneratorObjectPrototype();
98
99
100 // This tests the object that would be called "GeneratorFunction", if it were
101 // like "Function".
102 function TestGeneratorFunction() {
103 assertSame(GeneratorFunctionPrototype, GeneratorFunction.prototype);
104 assertTrue(g instanceof GeneratorFunction);
105
106 assertSame(Function, Object.getPrototypeOf(GeneratorFunction));
107 assertTrue(g instanceof Function);
108
109 // Not all functions are generators.
110 assertTrue(f instanceof Function); // Sanity check.
111 assertTrue(!(f instanceof GeneratorFunction));
112 }
113 TestGeneratorFunction();
114
115
116 function TestPerGeneratorPrototype() {
117 assertTrue((function*(){}).prototype !== (function*(){}).prototype);
118 assertTrue((function*(){}).prototype !== g.prototype);
119 assertTrue(g.prototype instanceof GeneratorFunctionPrototype);
120 assertSame(GeneratorObjectPrototype, Object.getPrototypeOf(g.prototype));
121 assertTrue(!(g.prototype instanceof Function));
122 assertSame(typeof (g.prototype), "object");
123
124 assertArrayEquals([], Object.getOwnPropertyNames(g.prototype));
125 }
126 TestPerGeneratorPrototype();
OLDNEW
« src/generator.js ('K') | « test/mjsunit/builtins.js ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698