Index: src/snapshot/natives-external.cc |
diff --git a/src/snapshot/natives-external.cc b/src/snapshot/natives-external.cc |
index 14def474094d45b8fb38ad64d2e231d9a0759280..e02a24c1d37ccdb41eb41a6ddda7b76be8732935 100644 |
--- a/src/snapshot/natives-external.cc |
+++ b/src/snapshot/natives-external.cc |
@@ -159,6 +159,7 @@ void ReadNatives() { |
NativesHolder<CORE>::set(NativesStore::MakeFromScriptsSource(&bytes)); |
NativesHolder<EXPERIMENTAL>::set( |
NativesStore::MakeFromScriptsSource(&bytes)); |
+ NativesHolder<EXTRAS>::set(NativesStore::MakeFromScriptsSource(&bytes)); |
DCHECK(!bytes.HasMore()); |
} |
} |
@@ -185,6 +186,7 @@ void SetNativesFromFile(StartupData* natives_blob) { |
void DisposeNatives() { |
NativesHolder<CORE>::Dispose(); |
NativesHolder<EXPERIMENTAL>::Dispose(); |
+ NativesHolder<EXTRAS>::Dispose(); |
} |
@@ -229,6 +231,7 @@ Vector<const char> NativesCollection<type>::GetScriptsSource() { |
// my choice to elide them. This we'll explicitly instantiate these. |
template class NativesCollection<CORE>; |
template class NativesCollection<EXPERIMENTAL>; |
+template class NativesCollection<EXTRAS>; |
} // namespace v8::internal |
} // namespace v8 |