Chromium Code Reviews| Index: src/ast.h |
| diff --git a/src/ast.h b/src/ast.h |
| index 0da58f1e415704e4a780d659662d18818e295292..5dfd21d9e4b98d3b53750f461c3df9afbb298ab4 100644 |
| --- a/src/ast.h |
| +++ b/src/ast.h |
| @@ -163,10 +163,10 @@ class Expression: public Node { |
| virtual void MarkAsStatement() { /* do nothing */ } |
| // Static type information for this expression. |
| - StaticType* type() { return &type_; } |
| + SmiAnalysis* type() { return &type_; } |
| private: |
| - StaticType type_; |
| + SmiAnalysis type_; |
| }; |