| Index: src/contexts.h
|
| diff --git a/src/contexts.h b/src/contexts.h
|
| index b80475f0f7c4e199e1544eabed91920a60cdd65f..d9d375b653fe1531ebae64f40926db54b7063bdc 100644
|
| --- a/src/contexts.h
|
| +++ b/src/contexts.h
|
| @@ -138,7 +138,8 @@ enum BindingFlags {
|
| to_complete_property_descriptor) \
|
| V(DERIVED_HAS_TRAP_INDEX, JSFunction, derived_has_trap) \
|
| V(DERIVED_GET_TRAP_INDEX, JSFunction, derived_get_trap) \
|
| - V(DERIVED_SET_TRAP_INDEX, JSFunction, derived_set_trap)
|
| + V(DERIVED_SET_TRAP_INDEX, JSFunction, derived_set_trap) \
|
| + V(RANDOM_SEED_INDEX, ByteArray, random_seed)
|
|
|
| // JSFunctions are pairs (context, function code), sometimes also called
|
| // closures. A Context object is used to represent function contexts and
|
| @@ -258,6 +259,7 @@ class Context: public FixedArray {
|
| DERIVED_HAS_TRAP_INDEX,
|
| DERIVED_GET_TRAP_INDEX,
|
| DERIVED_SET_TRAP_INDEX,
|
| + RANDOM_SEED_INDEX,
|
|
|
| // Properties from here are treated as weak references by the full GC.
|
| // Scavenge treats them as strong references.
|
|
|