Chromium Code Reviews| Index: src/objects.h |
| diff --git a/src/objects.h b/src/objects.h |
| index b423cd427994ec919f328da4b379fdf7b3a7c052..c54df59d97ececfd3e8ef05a6388624004350395 100644 |
| --- a/src/objects.h |
| +++ b/src/objects.h |
| @@ -207,8 +207,7 @@ class PropertyDetails BASE_EMBEDDED { |
| bool IsTransition() { |
| PropertyType t = type(); |
| ASSERT(t != INTERCEPTOR); |
| - return t == MAP_TRANSITION || t == CONSTANT_TRANSITION || |
| - t == ELEMENTS_TRANSITION; |
| + return IsTransitionType(t); |
| } |
| bool IsProperty() { |