| Index: src/contexts.h
|
| diff --git a/src/contexts.h b/src/contexts.h
|
| index 4b077263a4043f80f8dadd795ef18058dd5796c4..b0d3ae4cdc0d218bb450cc5df0f467ff5ed7d243 100644
|
| --- a/src/contexts.h
|
| +++ b/src/contexts.h
|
| @@ -107,7 +107,8 @@ enum ContextLookupFlags {
|
| V(OUT_OF_MEMORY_INDEX, Object, out_of_memory) \
|
| V(MAP_CACHE_INDEX, Object, map_cache) \
|
| V(CONTEXT_DATA_INDEX, Object, data) \
|
| - V(ALLOW_CODE_GEN_FROM_STRINGS_INDEX, Object, allow_code_gen_from_strings)
|
| + V(ALLOW_CODE_GEN_FROM_STRINGS_INDEX, Object, allow_code_gen_from_strings) \
|
| + V(DERIVED_GET_TRAP_INDEX, JSFunction, derived_get_trap)
|
|
|
| // JSFunctions are pairs (context, function code), sometimes also called
|
| // closures. A Context object is used to represent function contexts and
|
| @@ -238,6 +239,7 @@ class Context: public FixedArray {
|
| MAP_CACHE_INDEX,
|
| CONTEXT_DATA_INDEX,
|
| ALLOW_CODE_GEN_FROM_STRINGS_INDEX,
|
| + DERIVED_GET_TRAP_INDEX,
|
|
|
| // Properties from here are treated as weak references by the full GC.
|
| // Scavenge treats them as strong references.
|
|
|