Index: src/runtime/runtime.h |
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h |
index a55deddb7d2d575a81334f521c6f6c79b2b19e64..367a2cdc6e84c9e31162e0d1317ed814b4af011c 100644 |
--- a/src/runtime/runtime.h |
+++ b/src/runtime/runtime.h |
@@ -233,17 +233,12 @@ namespace internal { |
#define FOR_EACH_INTRINSIC_GENERATOR(F) \ |
F(CreateJSGeneratorObject, 0, 1) \ |
F(SuspendJSGeneratorObject, 1, 1) \ |
- F(ResumeJSGeneratorObject, 3, 1) \ |
F(GeneratorClose, 1, 1) \ |
F(GeneratorGetFunction, 1, 1) \ |
F(GeneratorGetReceiver, 1, 1) \ |
F(GeneratorGetInput, 1, 1) \ |
F(GeneratorGetContinuation, 1, 1) \ |
- F(GeneratorGetSourcePosition, 1, 1) \ |
- F(GeneratorNext, 2, 1) \ |
- F(GeneratorReturn, 2, 1) \ |
- F(GeneratorThrow, 2, 1) |
- |
+ F(GeneratorGetSourcePosition, 1, 1) |
#ifdef V8_I18N_SUPPORT |
#define FOR_EACH_INTRINSIC_I18N(F) \ |
@@ -289,7 +284,9 @@ namespace internal { |
F(NewSyntaxError, 2, 1) \ |
F(NewReferenceError, 2, 1) \ |
F(ThrowIllegalInvocation, 0, 1) \ |
+ F(ThrowIncompatibleMethodReceiver, 2, 1) \ |
F(ThrowIteratorResultNotAnObject, 1, 1) \ |
+ F(ThrowGeneratorRunning, 0, 1) \ |
F(ThrowStackOverflow, 0, 1) \ |
F(PromiseRejectEvent, 3, 1) \ |
F(PromiseRevokeReject, 1, 1) \ |