| Index: src/d8.h | 
| diff --git a/src/d8.h b/src/d8.h | 
| index e62ce3803642a17e9fcc339acbd0bb77dc52e2e4..f3760e8bc8ed37f8b7a81db557276bf131bf805c 100644 | 
| --- a/src/d8.h | 
| +++ b/src/d8.h | 
| @@ -129,12 +129,12 @@ class Shell: public i::AllStatic { | 
| static void AddHistogramSample(void* histogram, int sample); | 
| static void MapCounters(const char* name); | 
| static Handle<String> ReadFile(const char* name); | 
| -  static void Initialize(); | 
| +  static void Initialize(bool test_shell); | 
| static void RenewEvaluationContext(); | 
| static void InstallUtilityScript(); | 
| static void RunShell(); | 
| static int RunScript(char* filename); | 
| -  static int RunMain(int argc, char* argv[]); | 
| +  static int RunMain(int argc, char* argv[], bool* executed); | 
| static int Main(int argc, char* argv[]); | 
| static Handle<ObjectTemplate> CreateGlobalTemplate(); | 
| static Handle<Array> GetCompletions(Handle<String> text, | 
| @@ -202,8 +202,6 @@ class Shell: public i::AllStatic { | 
|  | 
| static void AddOSMethods(Handle<ObjectTemplate> os_template); | 
|  | 
| -  static Handle<Context> utility_context() { return utility_context_; } | 
| - | 
| static const char* kHistoryFileName; | 
| static const char* kPrompt; | 
|  | 
|  |