Chromium Code Reviews| Index: src/contexts.h |
| diff --git a/src/contexts.h b/src/contexts.h |
| index 01dd933902c4c8b2e1c5bf6e32255c6d271434ec..06daf62de1bc8a40914f0a688dba4fe7449b9670 100644 |
| --- a/src/contexts.h |
| +++ b/src/contexts.h |
| @@ -78,12 +78,12 @@ 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_MAP_STRICT_INDEX, Map, function_map_strict) \ |
|
Martin Maly
2011/03/15 03:08:57
Changing the names to end with _INDEX like all the
|
| V(FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX, Map, function_without_prototype_map) \ |
| - V(FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX_STRICT, Map, \ |
| + V(FUNCTION_WITHOUT_PROTOTYPE_MAP_STRICT_INDEX, 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(FUNCTION_INSTANCE_MAP_STRICT_INDEX, 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 +189,11 @@ class Context: public FixedArray { |
| JS_ARRAY_MAP_INDEX, |
| REGEXP_RESULT_MAP_INDEX, |
| FUNCTION_MAP_INDEX, |
| - FUNCTION_MAP_INDEX_STRICT, |
| + FUNCTION_MAP_STRICT_INDEX, |
| FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX, |
| - FUNCTION_WITHOUT_PROTOTYPE_MAP_INDEX_STRICT, |
| + FUNCTION_WITHOUT_PROTOTYPE_MAP_STRICT_INDEX, |
| FUNCTION_INSTANCE_MAP_INDEX, |
| - FUNCTION_INSTANCE_MAP_INDEX_STRICT, |
| + FUNCTION_INSTANCE_MAP_STRICT_INDEX, |
| INITIAL_OBJECT_PROTOTYPE_INDEX, |
| BOOLEAN_FUNCTION_INDEX, |
| NUMBER_FUNCTION_INDEX, |