Index: src/natives.h |
diff --git a/src/natives.h b/src/natives.h |
index ce90eac24878a6004db09bc1e35c67e0a6d2e3db..a2831863ad006a5111f2eeaef4328fd0509f922b 100644 |
--- a/src/natives.h |
+++ b/src/natives.h |
@@ -52,8 +52,11 @@ class NativesCollection { |
// 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; |