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

Unified Diff: runtime/lib/function.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/lib/errors.cc ('k') | runtime/lib/growable_array.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/function.cc
diff --git a/runtime/lib/function.cc b/runtime/lib/function.cc
index c1c141c5c4e73ac444964875fbe7daa617333a32..cf6e29813f2795baaafb582b6969b5f1d8f29bae 100644
--- a/runtime/lib/function.cc
+++ b/runtime/lib/function.cc
@@ -30,7 +30,6 @@ DEFINE_NATIVE_ENTRY(Function_apply, 2) {
return result.raw();
}
-
DEFINE_NATIVE_ENTRY(Closure_equals, 2) {
const Closure& receiver =
Closure::CheckedHandle(zone, arguments->NativeArgAt(0));
@@ -69,7 +68,6 @@ DEFINE_NATIVE_ENTRY(Closure_equals, 2) {
return Bool::False().raw();
}
-
DEFINE_NATIVE_ENTRY(Closure_hashCode, 1) {
const Closure& receiver =
Closure::CheckedHandle(zone, arguments->NativeArgAt(0));
@@ -77,7 +75,6 @@ DEFINE_NATIVE_ENTRY(Closure_hashCode, 1) {
return func.GetClosureHashCode();
}
-
DEFINE_NATIVE_ENTRY(Closure_clone, 1) {
const Closure& receiver =
Closure::CheckedHandle(zone, arguments->NativeArgAt(0));
@@ -99,5 +96,4 @@ DEFINE_NATIVE_ENTRY(Closure_clone, 1) {
function, cloned_context);
}
-
} // namespace dart
« no previous file with comments | « runtime/lib/errors.cc ('k') | runtime/lib/growable_array.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698