| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 the V8 project authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "src/setup-isolate.h" | |
| 6 | |
| 7 namespace v8 { | |
| 8 namespace internal { | |
| 9 | |
| 10 class SetupIsolateDelegateForTests : public SetupIsolateDelegate { | |
| 11 public: | |
| 12 SetupIsolateDelegateForTests() : SetupIsolateDelegate() {} | |
| 13 virtual ~SetupIsolateDelegateForTests() {} | |
| 14 | |
| 15 void SetupBuiltins(Isolate* isolate, bool create_heap_objects) override; | |
| 16 | |
| 17 void SetupInterpreter(interpreter::Interpreter* interpreter, | |
| 18 bool create_heap_objects) override; | |
| 19 }; | |
| 20 | |
| 21 } // namespace internal | |
| 22 } // namespace v8 | |
| OLD | NEW |