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

Unified Diff: runtime/vm/resolver.cc

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 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
« no previous file with comments | « runtime/vm/resolver.h ('k') | runtime/vm/resolver_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/resolver.cc
diff --git a/runtime/vm/resolver.cc b/runtime/vm/resolver.cc
index 4b26d5f5831fe7bd840b6e3ec9660776a15e63d3..fe59e675ac66d75a09aca651dc4b1c39570706f5 100644
--- a/runtime/vm/resolver.cc
+++ b/runtime/vm/resolver.cc
@@ -30,7 +30,6 @@ RawFunction* Resolver::ResolveDynamic(const Instance& receiver,
return ResolveDynamicForReceiverClass(cls, function_name, args_desc);
}
-
RawFunction* Resolver::ResolveDynamicForReceiverClass(
const Class& receiver_class,
const String& function_name,
@@ -61,7 +60,6 @@ RawFunction* Resolver::ResolveDynamicForReceiverClass(
return function.raw();
}
-
RawFunction* Resolver::ResolveDynamicAnyArgs(Zone* zone,
const Class& receiver_class,
const String& function_name,
@@ -142,7 +140,6 @@ RawFunction* Resolver::ResolveDynamicAnyArgs(Zone* zone,
return function.raw();
}
-
RawFunction* Resolver::ResolveStatic(const Library& library,
const String& class_name,
const String& function_name,
@@ -191,7 +188,6 @@ RawFunction* Resolver::ResolveStatic(const Library& library,
return function.raw();
}
-
RawFunction* Resolver::ResolveStatic(const Class& cls,
const String& function_name,
intptr_t type_args_len,
@@ -223,7 +219,6 @@ RawFunction* Resolver::ResolveStatic(const Class& cls,
return function.raw();
}
-
RawFunction* Resolver::ResolveStaticAllowPrivate(const Class& cls,
const String& function_name,
intptr_t type_args_len,
« no previous file with comments | « runtime/vm/resolver.h ('k') | runtime/vm/resolver_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698