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

Unified Diff: runtime/vm/kernel_reader.cc

Issue 2886873008: [kernel] Streaming ScopeBuilder (Closed)
Patch Set: Addressed (some) comments; rebased. Created 3 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 | « runtime/vm/kernel_binary_flowgraph.cc ('k') | runtime/vm/kernel_to_il.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/kernel_reader.cc
diff --git a/runtime/vm/kernel_reader.cc b/runtime/vm/kernel_reader.cc
index 1ddd641c9155bb545659bbdd721b26338da307e9..5f4dd9c6cdc0f4624f2ac3b13e62f2e1e3f810d6 100644
--- a/runtime/vm/kernel_reader.cc
+++ b/runtime/vm/kernel_reader.cc
@@ -434,8 +434,6 @@ dart::Class& KernelReader::ReadClass(const dart::Library& library,
for (intptr_t i = 0; i < kernel_klass->constructors().length(); i++) {
Constructor* kernel_constructor = kernel_klass->constructors()[i];
ActiveMemberScope active_member_scope(&active_class_, kernel_constructor);
- ActiveFunctionScope active_function_scope(&active_class_,
- kernel_constructor->function());
const dart::String& name =
H.DartConstructorName(kernel_constructor->canonical_name());
@@ -489,8 +487,6 @@ void KernelReader::ReadProcedure(const dart::Library& library,
Class* kernel_klass) {
ActiveClassScope active_class_scope(&active_class_, kernel_klass, &owner);
ActiveMemberScope active_member_scope(&active_class_, kernel_procedure);
- ActiveFunctionScope active_function_scope(&active_class_,
- kernel_procedure->function());
const dart::String& name =
H.DartProcedureName(kernel_procedure->canonical_name());
« no previous file with comments | « runtime/vm/kernel_binary_flowgraph.cc ('k') | runtime/vm/kernel_to_il.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698