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

Side by Side Diff: src/generators.js

Issue 13192004: arrange to create prototypes for generators (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Generators JS runtime to separate file, to avoid overhead when no --harmony-generators 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
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution. 11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its 12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived 13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission. 14 // from this software without specific prior written permission.
15 // 15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 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. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 "use strict"; 28 // TODO(wingo): Give link to specification. For now, the following diagram is
29 // the spec:
30 // http://wiki.ecmascript.org/lib/exe/fetch.php?cache=cache&media=harmony:es6_ge nerator_object_model_3-29-13.png
29 31
30 var $Symbol = global.Symbol; 32 var GeneratorFunctionPrototype = function () {};
33 function GeneratorFunction() {};
34 var GeneratorIteratorPrototype = new $Object;
31 35
32 function SymbolConstructor(x) { 36 function GeneratorIteratorNext() {
33 var value = 37 // TODO(wingo): Implement.
34 IS_SYMBOL(x) ? x : %CreateSymbol(IS_UNDEFINED(x) ? x : ToString(x));
35 if (%_IsConstructCall()) {
36 %_SetValueOf(this, value);
37 } else {
38 return value;
39 }
40 } 38 }
41 39
42 function SymbolGetName() { 40 function GeneratorIteratorSend(value) {
43 var symbol = IS_SYMBOL_WRAPPER(this) ? %_ValueOf(this) : this; 41 // TODO(wingo): Implement.
44 if (!IS_SYMBOL(symbol)) {
45 throw MakeTypeError(
46 'incompatible_method_receiver', ["Symbol.prototype.name", this]);
47 }
48 return %SymbolName(symbol);
49 } 42 }
50 43
51 function SymbolToString() { 44 function GeneratorIteratorThrow(exn) {
52 throw MakeTypeError('symbol_to_string'); 45 // TODO(wingo): Implement.
53 } 46 }
54 47
55 function SymbolValueOf() { 48 function GeneratorIteratorClose() {
56 // NOTE: Both Symbol objects and values can enter here as 49 // TODO(wingo): Implement.
57 // 'this'. This is not as dictated by ECMA-262.
58 if (!IS_SYMBOL(this) && !IS_SYMBOL_WRAPPER(this)) {
59 throw MakeTypeError(
60 'incompatible_method_receiver', ["Symbol.prototype.valueOf", this]);
61 }
62 return %_ValueOf(this);
63 } 50 }
64 51
65 //------------------------------------------------------------------- 52 function SetUpGenerators() {
53 %CheckIsBootstrapping();
54 // TODO(wingo): What are the right flags here? Should these objects
55 // be extensible? They are user-visible.
56 %SetPrototype(GeneratorFunction, $Function);
57 %FunctionSetPrototype(GeneratorFunction, GeneratorFunctionPrototype);
66 58
67 function SetUpSymbol() { 59 %SetProperty(GeneratorFunctionPrototype, 'constructor', GeneratorFunction,
68 %CheckIsBootstrapping(); 60 DONT_ENUM | DONT_DELETE | READ_ONLY);
61 %FunctionSetPrototype(GeneratorFunctionPrototype, GeneratorIteratorPrototype);
rossberg 2013/04/09 16:44:14 Don't you also need to set GeneratorIteratorProtot
69 62
70 %SetCode($Symbol, SymbolConstructor); 63 InstallFunctions(GeneratorIteratorPrototype,
71 %FunctionSetPrototype($Symbol, new $Symbol()); 64 DONT_ENUM | DONT_DELETE | READ_ONLY,
72 %SetProperty($Symbol.prototype, "constructor", $Symbol, DONT_ENUM); 65 $Array("next", GeneratorIteratorNext,
rossberg 2013/04/09 16:44:14 Nit: Use array literal here.
73 66 "send", GeneratorIteratorSend,
74 InstallGetter($Symbol.prototype, "name", SymbolGetName); 67 "throw", GeneratorIteratorThrow,
75 InstallFunctions($Symbol.prototype, DONT_ENUM, $Array( 68 "close", GeneratorIteratorClose));
76 "toString", SymbolToString,
77 "valueOf", SymbolValueOf
78 ));
79 } 69 }
80 70
81 SetUpSymbol(); 71 SetUpGenerators();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698