Index: src/property-details.h |
diff --git a/src/property-details.h b/src/property-details.h |
index 01592610681aecc9d2a7f6b08c3fedcf6b7aff7e..fdf2c6c4ab5fc0c6cec0d00921583451c5c7848a 100644 |
--- a/src/property-details.h |
+++ b/src/property-details.h |
@@ -330,6 +330,7 @@ class PropertyDetails BASE_EMBEDDED { |
bool IsReadOnly() const { return (attributes() & READ_ONLY) != 0; } |
bool IsConfigurable() const { return (attributes() & DONT_DELETE) == 0; } |
bool IsDontEnum() const { return (attributes() & DONT_ENUM) != 0; } |
+ bool IsEnumerable() const { return !IsDontEnum(); } |
PropertyCellType cell_type() const { |
return PropertyCellTypeField::decode(value_); |
} |