Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 8084474a9be9351c83df10d187d7dbabfd6c1aec..557e7ba0afb0ba7509c72a5607ddb3946b0d62af 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -7262,6 +7262,9 @@ class SharedFunctionInfo: public HeapObject { |
// Indicates that this function is a generator. |
DECL_BOOLEAN_ACCESSORS(is_generator) |
+ // Indicates that this function is an arrow function. |
+ DECL_BOOLEAN_ACCESSORS(is_arrow) |
+ |
// Indicates whether or not the code in the shared function support |
// deoptimization. |
inline bool has_deoptimization_support(); |
@@ -7457,6 +7460,7 @@ class SharedFunctionInfo: public HeapObject { |
kDontCache, |
kDontFlush, |
kIsGenerator, |
+ kIsArrow, |
kCompilerHintsCount // Pseudo entry |
}; |