Index: src/compiler/ast-graph-builder.h |
diff --git a/src/compiler/ast-graph-builder.h b/src/compiler/ast-graph-builder.h |
index 4099474096aa908637166b96747dacf9bfcf0fe6..5e0b3f3c3387768b7fd8cc019b0f26a335f17556 100644 |
--- a/src/compiler/ast-graph-builder.h |
+++ b/src/compiler/ast-graph-builder.h |
@@ -70,6 +70,7 @@ class AstGraphBuilder : public AstVisitor { |
class FrameStateBeforeAndAfter; |
friend class ControlBuilder; |
+ Isolate* isolate_; |
Zone* local_zone_; |
CompilationInfo* info_; |
JSGraph* jsgraph_; |
@@ -129,7 +130,7 @@ class AstGraphBuilder : public AstVisitor { |
ContextScope* execution_context() const { return execution_context_; } |
CommonOperatorBuilder* common() const { return jsgraph_->common(); } |
CompilationInfo* info() const { return info_; } |
- Isolate* isolate() const; |
+ Isolate* isolate() const { return isolate_; } |
LanguageMode language_mode() const; |
JSGraph* jsgraph() { return jsgraph_; } |
Graph* graph() { return jsgraph_->graph(); } |