Chromium Code Reviews| Index: src/ast.h |
| diff --git a/src/ast.h b/src/ast.h |
| index 65b984ebfcc96de8408e81a3226679065ce978eb..0ca3f0c091292c2279b4982d92b9f839c9b08b71 100644 |
| --- a/src/ast.h |
| +++ b/src/ast.h |
| @@ -1366,6 +1366,12 @@ class ObjectLiteral: public MaterializedLiteral { |
| kHasFunction = 1 << 1 |
| }; |
| + struct Accessors: public ZoneObject { |
| + Accessors() : getter(NULL), setter(NULL) { } |
| + Expression* getter; |
| + Expression* setter; |
| + }; |
| + |
| protected: |
| template<class> friend class AstNodeFactory; |