| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index ae118b4aca38d861f80fc4e43c1524a308dc2e55..7f30af57570a428994a3f3e731ad086cf4d46bee 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -7208,6 +7208,9 @@ class SharedFunctionInfo: public HeapObject {
|
| // Indicates that this function is an arrow function.
|
| DECL_BOOLEAN_ACCESSORS(is_arrow)
|
|
|
| + // Indicates that this function is a concise method.
|
| + DECL_BOOLEAN_ACCESSORS(is_concise_method)
|
| +
|
| // Indicates whether or not the code in the shared function support
|
| // deoptimization.
|
| inline bool has_deoptimization_support();
|
| @@ -7404,6 +7407,7 @@ class SharedFunctionInfo: public HeapObject {
|
| kDontFlush,
|
| kIsGenerator,
|
| kIsArrow,
|
| + kIsConciseMethod,
|
| kCompilerHintsCount // Pseudo entry
|
| };
|
|
|
|
|