| Index: src/natives.h
|
| ===================================================================
|
| --- src/natives.h (revision 8618)
|
| +++ src/natives.h (working copy)
|
| @@ -36,7 +36,7 @@
|
| int index);
|
|
|
| enum NativeType {
|
| - CORE, EXPERIMENTAL, D8, I18N
|
| + CORE, EXPERIMENTAL, D8
|
| };
|
|
|
| template <NativeType type>
|
| @@ -52,8 +52,11 @@
|
| // non-debugger scripts have an index in the interval [GetDebuggerCount(),
|
| // GetNativesCount()).
|
| static int GetIndex(const char* name);
|
| - static Vector<const char> GetScriptSource(int index);
|
| + static int GetRawScriptsSize();
|
| + static Vector<const char> GetRawScriptSource(int index);
|
| static Vector<const char> GetScriptName(int index);
|
| + static Vector<const byte> GetScriptsSource();
|
| + static void SetRawScriptsSource(Vector<const char> raw_source);
|
| };
|
|
|
| typedef NativesCollection<CORE> Natives;
|
|
|