| Index: src/isolate.cc | 
| diff --git a/src/isolate.cc b/src/isolate.cc | 
| index a77a871fedfc8af766cdf3c1a11bb4fe2b3ef1b2..0c0af8472a75f3067d63c17f662b2639d78edd85 100644 | 
| --- a/src/isolate.cc | 
| +++ b/src/isolate.cc | 
| @@ -9,7 +9,6 @@ | 
| #include <fstream>  // NOLINT(readability/streams) | 
| #include <sstream> | 
|  | 
| -#include "src/ast/ast-value-factory.h" | 
| #include "src/ast/context-slot-cache.h" | 
| #include "src/base/hashmap.h" | 
| #include "src/base/platform/platform.h" | 
| @@ -2376,9 +2375,6 @@ | 
| delete interpreter_; | 
| interpreter_ = NULL; | 
|  | 
| -  delete ast_string_constants_; | 
| -  ast_string_constants_ = nullptr; | 
| - | 
| delete cpu_profiler_; | 
| cpu_profiler_ = NULL; | 
|  | 
| @@ -2701,11 +2697,6 @@ | 
| Internals::kExternalMemoryLimitOffset); | 
|  | 
| time_millis_at_init_ = heap_.MonotonicallyIncreasingTimeInMs(); | 
| - | 
| -  { | 
| -    HandleScope scope(this); | 
| -    ast_string_constants_ = new AstStringConstants(this, heap()->HashSeed()); | 
| -  } | 
|  | 
| if (!create_heap_objects) { | 
| // Now that the heap is consistent, it's OK to generate the code for the | 
|  |