| Index: src/compiler/ast-graph-builder.h
|
| diff --git a/src/compiler/ast-graph-builder.h b/src/compiler/ast-graph-builder.h
|
| index 2a40453bbc43e6b2252ed17fa2c6dbb1060df607..edef1c08329ca4b32901377f5833f560e5d45b6e 100644
|
| --- a/src/compiler/ast-graph-builder.h
|
| +++ b/src/compiler/ast-graph-builder.h
|
| @@ -37,6 +37,7 @@ class TypeHintAnalysis;
|
| class AstGraphBuilder : public AstVisitor<AstGraphBuilder> {
|
| public:
|
| AstGraphBuilder(Zone* local_zone, CompilationInfo* info, JSGraph* jsgraph,
|
| + float invocation_frequency,
|
| LoopAssignmentAnalysis* loop_assignment = nullptr,
|
| TypeHintAnalysis* type_hint_analysis = nullptr);
|
| virtual ~AstGraphBuilder() {}
|
| @@ -80,6 +81,7 @@ class AstGraphBuilder : public AstVisitor<AstGraphBuilder> {
|
| Zone* local_zone_;
|
| CompilationInfo* info_;
|
| JSGraph* jsgraph_;
|
| + float const invocation_frequency_;
|
| Environment* environment_;
|
| AstContext* ast_context_;
|
|
|
|
|