Index: src/ast.h |
diff --git a/src/ast.h b/src/ast.h |
index 9c6f213e6076af92b6e69791c41af65f48488de9..7432b0b9e6cfaabc385b918f8f8637af0912c6bc 100644 |
--- a/src/ast.h |
+++ b/src/ast.h |
@@ -1968,7 +1968,7 @@ class CountOperation V8_FINAL : public Expression { |
virtual KeyedAccessStoreMode GetStoreMode() V8_OVERRIDE { |
return store_mode_; |
} |
- TypeInfo type() const { return type_; } |
+ Handle<Type> type() const { return type_; } |
BailoutId AssignmentId() const { return assignment_id_; } |
@@ -1997,7 +1997,7 @@ class CountOperation V8_FINAL : public Expression { |
bool is_monomorphic_ : 1; |
KeyedAccessStoreMode store_mode_ : 5; // Windows treats as signed, |
// must have extra bit. |
- TypeInfo type_; |
+ Handle<Type> type_; |
Expression* expression_; |
int pos_; |