Index: src/natives.h |
diff --git a/src/natives.h b/src/natives.h |
index 5f34420d0b2d94d4037416df393583160d3131f0..e3f69d1dae05114a22f47488835228e33c3ecf4e 100644 |
--- a/src/natives.h |
+++ b/src/natives.h |
@@ -36,7 +36,7 @@ typedef bool (*NativeSourceCallback)(Vector<const char> name, |
int index); |
enum NativeType { |
- CORE, EXPERIMENTAL, D8, TEST |
+ CORE, EXPERIMENTAL, D8, TEST, I18N |
}; |
template <NativeType type> |
@@ -61,6 +61,7 @@ class NativesCollection { |
typedef NativesCollection<CORE> Natives; |
typedef NativesCollection<EXPERIMENTAL> ExperimentalNatives; |
+typedef NativesCollection<I18N> I18NNatives; |
} } // namespace v8::internal |