Index: src/ast/ast.h |
diff --git a/src/ast/ast.h b/src/ast/ast.h |
index ad02c960f840d66ff44ecaa1d5d89fdb40bdc284..d59667364d9f4723da0355ee9f99347cfc424435 100644 |
--- a/src/ast/ast.h |
+++ b/src/ast/ast.h |
@@ -1451,9 +1451,10 @@ class ObjectLiteral final : public MaterializedLiteral { |
}; |
struct Accessors: public ZoneObject { |
- Accessors() : getter(NULL), setter(NULL) {} |
+ Accessors() : getter(NULL), setter(NULL), bailout_id(BailoutId::None()) {} |
ObjectLiteralProperty* getter; |
ObjectLiteralProperty* setter; |
+ BailoutId bailout_id; |
}; |
BailoutId CreateLiteralId() const { return BailoutId(local_id(0)); } |