Index: src/contexts.h |
diff --git a/src/contexts.h b/src/contexts.h |
index 2672487531f4ec478e7f18ef89aa9bcfb2f148a0..2059a2723ba328f4d16d2cbebf6e612b39c06be1 100644 |
--- a/src/contexts.h |
+++ b/src/contexts.h |
@@ -179,6 +179,7 @@ enum BindingFlags { |
strict_mode_generator_function_map) \ |
V(GENERATOR_OBJECT_PROTOTYPE_MAP_INDEX, Map, \ |
generator_object_prototype_map) \ |
+ V(GENERATOR_RESULT_MAP_INDEX, Map, generator_result_map) \ |
V(RANDOM_SEED_INDEX, ByteArray, random_seed) |
// JSFunctions are pairs (context, function code), sometimes also called |
@@ -321,6 +322,7 @@ class Context: public FixedArray { |
GENERATOR_FUNCTION_MAP_INDEX, |
STRICT_MODE_GENERATOR_FUNCTION_MAP_INDEX, |
GENERATOR_OBJECT_PROTOTYPE_MAP_INDEX, |
+ GENERATOR_RESULT_MAP_INDEX, |
RANDOM_SEED_INDEX, |
// Properties from here are treated as weak references by the full GC. |