Index: src/contexts.h |
diff --git a/src/contexts.h b/src/contexts.h |
index 01dd933902c4c8b2e1c5bf6e32255c6d271434ec..d0d54d1bd2ab2a3c0a641e5426f031baf0f99710 100644 |
--- a/src/contexts.h |
+++ b/src/contexts.h |
@@ -78,12 +78,8 @@ enum ContextLookupFlags { |
V(INSTANTIATE_FUN_INDEX, JSFunction, instantiate_fun) \ |
V(CONFIGURE_INSTANCE_FUN_INDEX, JSFunction, configure_instance_fun) \ |
V(FUNCTION_MAP_INDEX, Map, function_map) \ |
- V(FUNCTION_MAP_INDEX_STRICT, Map, function_map_strict) \ |
V(FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX, Map, function_without_prototype_map) \ |
- V(FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX_STRICT, Map, \ |
- function_without_prototype_map_strict) \ |
V(FUNCTION_INSTANCE_MAP_INDEX, Map, function_instance_map) \ |
- V(FUNCTION_INSTANCE_MAP_INDEX_STRICT, Map, function_instance_map_strict) \ |
V(JS_ARRAY_MAP_INDEX, Map, js_array_map)\ |
V(REGEXP_RESULT_MAP_INDEX, Map, regexp_result_map)\ |
V(ARGUMENTS_BOILERPLATE_INDEX, JSObject, arguments_boilerplate) \ |
@@ -189,11 +185,8 @@ class Context: public FixedArray { |
JS_ARRAY_MAP_INDEX, |
REGEXP_RESULT_MAP_INDEX, |
FUNCTION_MAP_INDEX, |
- FUNCTION_MAP_INDEX_STRICT, |
FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX, |
- FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX_STRICT, |
FUNCTION_INSTANCE_MAP_INDEX, |
- FUNCTION_INSTANCE_MAP_INDEX_STRICT, |
INITIAL_OBJECT_PROTOTYPE_INDEX, |
BOOLEAN_FUNCTION_INDEX, |
NUMBER_FUNCTION_INDEX, |