Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(823)

Unified Diff: src/execution.cc

Issue 2861017: [Isolates] Make statics from BootstrapperActive to be instance members (Closed)
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/contexts.cc ('k') | src/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/execution.cc
diff --git a/src/execution.cc b/src/execution.cc
index 2bc4df5a05a2c8a657bb2e1bc7ae9177e04a4539..ac11a6abb894e46bcc5f11967a3ff5d3bb53f9a5 100644
--- a/src/execution.cc
+++ b/src/execution.cc
@@ -643,7 +643,7 @@ Object* Execution::DebugBreakHelper() {
}
// Ignore debug break during bootstrapping.
- if (Bootstrapper::IsActive()) {
+ if (isolate->bootstrapper()->IsActive()) {
return isolate->heap()->undefined_value();
}
« no previous file with comments | « src/contexts.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698