| Index: src/runtime.h
|
| diff --git a/src/runtime.h b/src/runtime.h
|
| index 83e16412ebd8d0882bc72a5d87485fbff67aa0ce..a70d8c498c6be7bb7d4739175b540f7e6d063c19 100644
|
| --- a/src/runtime.h
|
| +++ b/src/runtime.h
|
| @@ -299,6 +299,8 @@ namespace internal {
|
| /* Harmony generators */ \
|
| F(CreateJSGeneratorObject, 0, 1) \
|
| F(SuspendJSGeneratorObject, 1, 1) \
|
| + F(ResumeJSGeneratorObject, 3, 1) \
|
| + F(ThrowGeneratorStateError, 1, 1) \
|
| \
|
| /* Harmony modules */ \
|
| F(IsJSModule, 1, 1) \
|
| @@ -560,7 +562,9 @@ namespace internal {
|
| F(IsRegExpEquivalent, 2, 1) \
|
| F(HasCachedArrayIndex, 1, 1) \
|
| F(GetCachedArrayIndex, 1, 1) \
|
| - F(FastAsciiArrayJoin, 2, 1)
|
| + F(FastAsciiArrayJoin, 2, 1) \
|
| + F(GeneratorSend, 2, 1) \
|
| + F(GeneratorThrow, 2, 1)
|
|
|
|
|
| // ----------------------------------------------------------------------------
|
|
|