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

Unified Diff: runtime/vm/native_entry_test.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/native_entry.cc ('k') | runtime/vm/native_message_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/native_entry_test.cc
diff --git a/runtime/vm/native_entry_test.cc b/runtime/vm/native_entry_test.cc
index eb012e0fe2f605c2bb77a94a0a9da9b3dbb08026..600c32349059f50f278c3b8212b9fc5820fdc04b 100644
--- a/runtime/vm/native_entry_test.cc
+++ b/runtime/vm/native_entry_test.cc
@@ -15,7 +15,6 @@
namespace dart {
-
// A native call for test purposes.
// Arg0: a smi.
// Arg1: a smi.
@@ -33,7 +32,6 @@ void TestSmiSub(Dart_NativeArguments args) {
Dart_SetReturnValue(args, Dart_NewInteger(result));
}
-
// A native call for test purposes.
// Arg0-4: 5 smis.
// Result: a smi representing the sum of all arguments.
@@ -51,7 +49,6 @@ void TestSmiSum(Dart_NativeArguments args) {
Dart_SetReturnValue(args, Dart_NewInteger(result));
}
-
// Test for accepting null arguments in native function.
// Arg0-4: 5 smis or null.
// Result: a smi representing the sum of all non-null arguments.
« no previous file with comments | « runtime/vm/native_entry.cc ('k') | runtime/vm/native_message_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698