| Index: src/isolate.h
|
| diff --git a/src/isolate.h b/src/isolate.h
|
| index a67f0c7fb55c72cae7ea20aa52c68bc2ca1ffcd5..70be337a7e0d435803e76e1b4277bff0bac8074c 100644
|
| --- a/src/isolate.h
|
| +++ b/src/isolate.h
|
| @@ -84,6 +84,9 @@ class PromiseOnStack;
|
| class Redirection;
|
| class Simulator;
|
|
|
| +namespace interpreter {
|
| +class Interpreter;
|
| +}
|
|
|
| // Static indirection table for handles to constants. If a frame
|
| // element represents a constant, the data contains an index into
|
| @@ -1317,6 +1320,8 @@ class Isolate {
|
| HeapProfiler* heap_profiler_;
|
| FunctionEntryHook function_entry_hook_;
|
|
|
| + interpreter::Interpreter* interpreter_;
|
| +
|
| typedef std::pair<InterruptCallback, void*> InterruptEntry;
|
| std::queue<InterruptEntry> api_interrupts_queue_;
|
|
|
|
|