| Index: src/ast.h
|
| diff --git a/src/ast.h b/src/ast.h
|
| index c63090687b96a912975b39a69522a647d7d8a458..0c38cd4121bf6dd90a61c1028c796c2773dd2746 100644
|
| --- a/src/ast.h
|
| +++ b/src/ast.h
|
| @@ -1971,7 +1971,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_; }
|
|
|
| @@ -2000,7 +2000,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_;
|
|
|