Index: src/compiler/ast-graph-builder.h |
diff --git a/src/compiler/ast-graph-builder.h b/src/compiler/ast-graph-builder.h |
index 8a8b53a281c6d8c8027f54a67020da5f21eeea77..0472bfeb42e95761c0a39bcff793a90393591408 100644 |
--- a/src/compiler/ast-graph-builder.h |
+++ b/src/compiler/ast-graph-builder.h |
@@ -110,6 +110,9 @@ class AstGraphBuilder : public AstVisitor { |
// Analyzer of local variable liveness. |
LivenessAnalyzer liveness_analyzer_; |
+ // Function info for frame state construction. |
+ const FrameStateFunctionInfo* const frame_state_function_info_; |
+ |
// Type feedback table. |
JSTypeFeedbackTable* js_type_feedback_; |
@@ -133,6 +136,9 @@ class AstGraphBuilder : public AstVisitor { |
Scope* current_scope() const; |
Node* current_context() const; |
LivenessAnalyzer* liveness_analyzer() { return &liveness_analyzer_; } |
+ const FrameStateFunctionInfo* frame_state_function_info() const { |
+ return frame_state_function_info_; |
+ } |
void set_environment(Environment* env) { environment_ = env; } |
void set_ast_context(AstContext* ctx) { ast_context_ = ctx; } |