Index: src/contexts.h |
diff --git a/src/contexts.h b/src/contexts.h |
index 189c215e63904b76aea1dd9493397c2f44f21d2e..461c9dc6b714667f94af9909087abb245b2ca811 100644 |
--- a/src/contexts.h |
+++ b/src/contexts.h |
@@ -184,8 +184,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) |
+ V(GENERATOR_RESULT_MAP_INDEX, Map, generator_result_map) |
// JSFunctions are pairs (context, function code), sometimes also called |
// closures. A Context object is used to represent function contexts and |
@@ -332,7 +331,6 @@ class Context: public FixedArray { |
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. |
// Scavenge treats them as strong references. |