| Index: src/hydrogen.h
|
| diff --git a/src/hydrogen.h b/src/hydrogen.h
|
| index c1ed797c96f0a37cca3c929d42852bcc1a91bbf7..53443595cbfc7860b03ec0041952aca14519809d 100644
|
| --- a/src/hydrogen.h
|
| +++ b/src/hydrogen.h
|
| @@ -2518,9 +2518,9 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
|
|
|
| bool IsFound() const { return lookup_.IsFound(); }
|
| bool IsProperty() const { return lookup_.IsProperty(); }
|
| - bool IsField() const { return lookup_.IsField(); }
|
| - bool IsConstant() const { return lookup_.IsConstant(); }
|
| - bool IsAccessor() const { return lookup_.IsPropertyCallbacks(); }
|
| + bool IsData() const { return lookup_.IsData(); }
|
| + bool IsDataConstant() const { return lookup_.IsDataConstant(); }
|
| + bool IsAccessorConstant() const { return lookup_.IsAccessorConstant(); }
|
| bool IsTransition() const { return lookup_.IsTransition(); }
|
|
|
| bool IsConfigurable() const { return lookup_.IsConfigurable(); }
|
|
|