Index: src/ast/ast.h |
diff --git a/src/ast/ast.h b/src/ast/ast.h |
index b0ed72e5b9e99eccf6a91e5bcf73871a94e5e14d..06c4b17d549cdfdc9044742f2dcc7b57c08d2d62 100644 |
--- a/src/ast/ast.h |
+++ b/src/ast/ast.h |
@@ -1359,8 +1359,9 @@ class ObjectLiteralProperty final : public LiteralProperty { |
COMPUTED, // Property with computed value (execution time). |
MATERIALIZED_LITERAL, // Property value is a materialized literal. |
GETTER, |
- SETTER, // Property is an accessor function. |
- PROTOTYPE // Property is __proto__. |
+ SETTER, // Property is an accessor function. |
+ PROTOTYPE, // Property is __proto__. |
+ SPREAD |
}; |
Kind kind() const { return kind_; } |