Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index faee6b6ba6514476b1f673c9babe6f1163c733f7..e7d8b14d3dd92f979ada13417f8b2a81ef511d56 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -7181,6 +7181,9 @@ class SharedFunctionInfo: public HeapObject { |
// Indicates that |debug_is_blackboxed| has been computed and set. |
DECL_BOOLEAN_ACCESSORS(computed_debug_is_blackboxed) |
+ // Indicates that the function has been reported for binary code coverage. |
+ DECL_BOOLEAN_ACCESSORS(has_reported_binary_coverage) |
+ |
// The function's name if it is non-empty, otherwise the inferred name. |
String* DebugName(); |
@@ -7581,6 +7584,7 @@ class SharedFunctionInfo: public HeapObject { |
kComputedHasNoSideEffect, |
kDebugIsBlackboxed, |
kComputedDebugIsBlackboxed, |
+ kHasReportedBinaryCoverage |
}; |
// kFunctionKind has to be byte-aligned |