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

Unified Diff: runtime/vm/bootstrap_nocore.cc

Issue 3001103002: Do not qualify with dart:: except where necessary (Closed)
Patch Set: Created 3 years, 4 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/bootstrap.cc ('k') | runtime/vm/kernel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/bootstrap_nocore.cc
diff --git a/runtime/vm/bootstrap_nocore.cc b/runtime/vm/bootstrap_nocore.cc
index ba5aff8af032059cfb42b500d5d94b87b4597d82..192ec678eea3e988797165dc5a747eab58c19da0 100644
--- a/runtime/vm/bootstrap_nocore.cc
+++ b/runtime/vm/bootstrap_nocore.cc
@@ -76,7 +76,7 @@ RawError* BootstrapFromKernel(Thread* thread, kernel::Program* program) {
// adding classes to the list more than once.
GrowableObjectArray& pending_classes = GrowableObjectArray::Handle(
zone, isolate->object_store()->pending_classes());
- dart::Class& pending = dart::Class::Handle(zone);
+ Class& pending = Class::Handle(zone);
for (intptr_t i = 0; i < pending_classes.Length(); ++i) {
pending ^= pending_classes.At(i);
pending.set_is_marked_for_parsing();
« no previous file with comments | « runtime/vm/bootstrap.cc ('k') | runtime/vm/kernel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698