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

Unified Diff: runtime/vm/parser.h

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/pages_test.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/parser.h
diff --git a/runtime/vm/parser.h b/runtime/vm/parser.h
index 3dd35dc5086639796c59b97be1156db912458d66..7bdc5389d3a7f39d60f3453dc36a9a35c0a07e6d 100644
--- a/runtime/vm/parser.h
+++ b/runtime/vm/parser.h
@@ -7,15 +7,15 @@
#include "include/dart_api.h"
+#include "lib/invocation_mirror.h"
#include "platform/assert.h"
#include "platform/globals.h"
-#include "lib/invocation_mirror.h"
#include "vm/allocation.h"
#include "vm/ast.h"
#include "vm/class_finalizer.h"
#include "vm/compiler_stats.h"
-#include "vm/kernel.h"
#include "vm/hash_table.h"
+#include "vm/kernel.h"
#include "vm/object.h"
#include "vm/raw_object.h"
#include "vm/token.h"
@@ -28,7 +28,7 @@ namespace kernel {
class ScopeBuildingResult;
-} // kernel
+} // namespace kernel
class ArgumentsDescriptor;
class Isolate;
@@ -160,7 +160,6 @@ class ParsedFunction : public ZoneAllocated {
#endif
}
-
const Instance& DefaultParameterValueAt(intptr_t i) const {
ASSERT(default_parameter_values_ != NULL);
return *default_parameter_values_->At(i);
@@ -261,7 +260,6 @@ class ParsedFunction : public ZoneAllocated {
DISALLOW_COPY_AND_ASSIGN(ParsedFunction);
};
-
class Parser : public ValueObject {
public:
// Parse the top level of a whole script file and register declared classes
« no previous file with comments | « runtime/vm/pages_test.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698