| Index: src/runtime/runtime-generator.cc
|
| diff --git a/src/runtime/runtime-generator.cc b/src/runtime/runtime-generator.cc
|
| index 71d7059bf8bccf790fcdf346a7f4c8bea729cbef..a3b4c9d0a5f3240fc6889fad8cb3715d152d318a 100644
|
| --- a/src/runtime/runtime-generator.cc
|
| +++ b/src/runtime/runtime-generator.cc
|
| @@ -77,7 +77,6 @@ RUNTIME_FUNCTION(Runtime_SuspendJSGeneratorObject) {
|
| return isolate->heap()->undefined_value();
|
| }
|
|
|
| -
|
| RUNTIME_FUNCTION(Runtime_GeneratorClose) {
|
| HandleScope scope(isolate);
|
| DCHECK(args.length() == 1);
|
| @@ -118,7 +117,6 @@ RUNTIME_FUNCTION(Runtime_GeneratorGetInput) {
|
| return generator->input();
|
| }
|
|
|
| -
|
| // Returns resume mode of generator activation.
|
| RUNTIME_FUNCTION(Runtime_GeneratorGetResumeMode) {
|
| HandleScope scope(isolate);
|
| @@ -128,7 +126,6 @@ RUNTIME_FUNCTION(Runtime_GeneratorGetResumeMode) {
|
| return Smi::FromInt(generator->resume_mode());
|
| }
|
|
|
| -
|
| // Returns generator continuation as a PC offset, or the magic -1 or 0 values.
|
| RUNTIME_FUNCTION(Runtime_GeneratorGetContinuation) {
|
| HandleScope scope(isolate);
|
|
|