Index: src/contexts.h |
diff --git a/src/contexts.h b/src/contexts.h |
index 2d04da29b3bd1d2444c54bb76a01fb02314e9a66..066e8a1ec33a86126a5fdaf39e5b16d5d5a9d796 100644 |
--- a/src/contexts.h |
+++ b/src/contexts.h |
@@ -185,7 +185,8 @@ enum BindingFlags { |
V(MAP_ITERATOR_MAP_INDEX, Map, map_iterator_map) \ |
V(SET_ITERATOR_MAP_INDEX, Map, set_iterator_map) \ |
V(ARRAY_VALUES_ITERATOR_INDEX, JSFunction, array_values_iterator) \ |
- V(SCRIPT_CONTEXT_TABLE_INDEX, ScriptContextTable, script_context_table) |
+ V(SCRIPT_CONTEXT_TABLE_INDEX, ScriptContextTable, script_context_table) \ |
+ V(BUILTIN_EXPORTS_OBJECT_INDEX, Object, builtin_exports_object) |
// A table of all script contexts. Every loaded top-level script with top-level |
@@ -422,6 +423,7 @@ class Context: public FixedArray { |
SCRIPT_CONTEXT_TABLE_INDEX, |
MAP_CACHE_INDEX, |
TO_LENGTH_FUN_INDEX, |
+ BUILTIN_EXPORTS_OBJECT_INDEX, |
// Properties from here are treated as weak references by the full GC. |
// Scavenge treats them as strong references. |