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

Unified Diff: runtime/lib/errors.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/double.cc ('k') | runtime/lib/function.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/errors.cc
diff --git a/runtime/lib/errors.cc b/runtime/lib/errors.cc
index a4a738bd9862ce21888838c61b2c440568078071..4783d4d57595949c195818a9c0201154f527f4d0 100644
--- a/runtime/lib/errors.cc
+++ b/runtime/lib/errors.cc
@@ -58,7 +58,6 @@ static RawScript* FindScript(DartFrameIterator* iterator) {
return Script::null();
}
-
// Allocate and throw a new AssertionError.
// Arg0: index of the first token of the failed assertion.
// Arg1: index of the first token after the failed assertion.
@@ -102,7 +101,6 @@ DEFINE_NATIVE_ENTRY(AssertionError_throwNew, 3) {
return Object::null();
}
-
// Allocate and throw a new TypeError or CastError.
// Arg0: index of the token of the failed type check.
// Arg1: src value.
@@ -129,7 +127,6 @@ DEFINE_NATIVE_ENTRY(TypeError_throwNew, 5) {
return Object::null();
}
-
// Allocate and throw a new FallThroughError.
// Arg0: index of the case clause token into which we fall through.
// Return value: none, throws an exception.
@@ -154,7 +151,6 @@ DEFINE_NATIVE_ENTRY(FallThroughError_throwNew, 1) {
return Object::null();
}
-
// Allocate and throw a new AbstractClassInstantiationError.
// Arg0: Token position of allocation statement.
// Arg1: class name of the abstract class that cannot be instantiated.
« no previous file with comments | « runtime/lib/double.cc ('k') | runtime/lib/function.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698