Index: src/compiler/ast-graph-builder.h |
diff --git a/src/compiler/ast-graph-builder.h b/src/compiler/ast-graph-builder.h |
index 2013f5053b5649bd8813dd3c25a2f755a8bac7d7..b56d786c35237c1e85b1ebc72acd527502fc3b21 100644 |
--- a/src/compiler/ast-graph-builder.h |
+++ b/src/compiler/ast-graph-builder.h |
@@ -26,7 +26,6 @@ class Graph; |
class LoopAssignmentAnalysis; |
class LoopBuilder; |
class Node; |
-class TypeHintAnalysis; |
// The AstGraphBuilder produces a high-level IR graph, based on an |
@@ -39,8 +38,7 @@ 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); |
+ LoopAssignmentAnalysis* loop_assignment = nullptr); |
virtual ~AstGraphBuilder() {} |
// Creates a graph by visiting the entire AST. |
@@ -119,9 +117,6 @@ class AstGraphBuilder : public AstVisitor<AstGraphBuilder> { |
// Result of loop assignment analysis performed before graph creation. |
LoopAssignmentAnalysis* loop_assignment_analysis_; |
- // Result of type hint analysis performed before graph creation. |
- TypeHintAnalysis* type_hint_analysis_; |
- |
// Cache for StateValues nodes for frame states. |
StateValuesCache state_values_cache_; |
@@ -622,7 +617,6 @@ class AstGraphBuilderWithPositions final : public AstGraphBuilder { |
AstGraphBuilderWithPositions(Zone* local_zone, CompilationInfo* info, |
JSGraph* jsgraph, float invocation_frequency, |
LoopAssignmentAnalysis* loop_assignment, |
- TypeHintAnalysis* type_hint_analysis, |
SourcePositionTable* source_positions, |
int inlining_id = SourcePosition::kNotInlined); |