summaryrefslogtreecommitdiff
path: root/chromium/v8/src/debug/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/debug/debug.h')
-rw-r--r--chromium/v8/src/debug/debug.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chromium/v8/src/debug/debug.h b/chromium/v8/src/debug/debug.h
index 684397400ac..eef89f93725 100644
--- a/chromium/v8/src/debug/debug.h
+++ b/chromium/v8/src/debug/debug.h
@@ -375,6 +375,8 @@ class V8_EXPORT_PRIVATE Debug {
return thread_local_.break_on_next_function_call_;
}
+ inline bool break_disabled() const { return break_disabled_; }
+
DebugFeatureTracker* feature_tracker() { return &feature_tracker_; }
// For functions in which we cannot set a break point, use a canonical
@@ -399,7 +401,6 @@ class V8_EXPORT_PRIVATE Debug {
return is_suppressed_ || !is_active_ ||
isolate_->debug_execution_mode() == DebugInfo::kSideEffects;
}
- inline bool break_disabled() const { return break_disabled_; }
void clear_suspended_generator() {
thread_local_.suspended_generator_ = Smi::kZero;