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

Unified Diff: src/background-parsing-task.cc

Issue 1233073005: Debugger: prepare code for debugging on a per-function basis. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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
Index: src/background-parsing-task.cc
diff --git a/src/background-parsing-task.cc b/src/background-parsing-task.cc
index d7df9b4717395aa04799cfdcbbd7ff9be430848d..993cbe06677e56698a2bc84f25650d9d5380c108 100644
--- a/src/background-parsing-task.cc
+++ b/src/background-parsing-task.cc
@@ -31,14 +31,11 @@ BackgroundParsingTask::BackgroundParsingTask(
info->set_global();
info->set_unicode_cache(&source_->unicode_cache);
- bool disable_lazy = Compiler::DebuggerWantsEagerCompilation(isolate);
- if (disable_lazy && options == ScriptCompiler::kProduceParserCache) {
- // Producing cached data while parsing eagerly is not supported.
- options = ScriptCompiler::kNoCompileOptions;
- }
-
info->set_compile_options(options);
- info->set_allow_lazy_parsing(!disable_lazy);
+
+ // The background parsing task is not used for eval, where we may compile for
+ // debugging. Without compiling inner functions eagerly, we can parse lazily.
+ info->set_allow_lazy_parsing(true);
}
« no previous file with comments | « src/arm64/assembler-arm64-inl.h ('k') | src/bailout-reason.h » ('j') | src/compiler.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698