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

Unified Diff: src/generator.js

Issue 14262004: Generator objects have [[Class]] === "Generator" (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Generator object methods check class of receiver 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 side-by-side diff with in-line comments
Download patch
Index: src/generator.js
diff --git a/src/generator.js b/src/generator.js
index d579928cbae74531af80108f12f62ecd1fb4048b..89b76ee0acae2165abbda4e781cf31bbaca7bb01 100644
--- a/src/generator.js
+++ b/src/generator.js
@@ -39,18 +39,38 @@
// http://wiki.ecmascript.org/lib/exe/fetch.php?cache=cache&media=harmony:es6_generator_object_model_3-29-13.png
function GeneratorObjectNext() {
+ if (!IS_GENERATOR(this)) {
+ throw MakeTypeError('incompatible_method_receiver',
+ ['[Generator].prototype.next', this]);
+ }
+
// TODO(wingo): Implement.
}
function GeneratorObjectSend(value) {
+ if (!IS_GENERATOR(this)) {
+ throw MakeTypeError('incompatible_method_receiver',
+ ['[Generator].prototype.next', this]);
Michael Starzinger 2013/04/17 12:52:19 The error message should say "send" for the method
wingo 2013/04/17 14:23:51 Done.
+ }
+
// TODO(wingo): Implement.
}
function GeneratorObjectThrow(exn) {
+ if (!IS_GENERATOR(this)) {
+ throw MakeTypeError('incompatible_method_receiver',
+ ['[Generator].prototype.next', this]);
Michael Starzinger 2013/04/17 12:52:19 The error message should say "throw" for the metho
wingo 2013/04/17 14:23:51 Done.
+ }
+
// TODO(wingo): Implement.
}
function GeneratorObjectClose() {
+ if (!IS_GENERATOR(this)) {
+ throw MakeTypeError('incompatible_method_receiver',
+ ['[Generator].prototype.next', this]);
Michael Starzinger 2013/04/17 12:52:19 The error message should say "close" for the metho
wingo 2013/04/17 14:23:51 Done.
+ }
+
// TODO(wingo): Implement.
}

Powered by Google App Engine
This is Rietveld 408576698