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

Unified Diff: runtime/vm/compiler.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/compilation_trace.cc ('k') | runtime/vm/compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/compiler.h
diff --git a/runtime/vm/compiler.h b/runtime/vm/compiler.h
index 1b0d079871ccb280013f2702ccaabb0ca13839ea..4b121af5f43d3e72a02710b303af27d5f19744b0 100644
--- a/runtime/vm/compiler.h
+++ b/runtime/vm/compiler.h
@@ -43,7 +43,6 @@ class CompilationPipeline : public ZoneAllocated {
virtual ~CompilationPipeline() {}
};
-
class DartCompilationPipeline : public CompilationPipeline {
public:
virtual void ParseFunction(ParsedFunction* parsed_function);
@@ -57,7 +56,6 @@ class DartCompilationPipeline : public CompilationPipeline {
virtual void FinalizeCompilation(FlowGraph* flow_graph);
};
-
class IrregexpCompilationPipeline : public CompilationPipeline {
public:
IrregexpCompilationPipeline() : backtrack_goto_(NULL) {}
@@ -76,7 +74,6 @@ class IrregexpCompilationPipeline : public CompilationPipeline {
IndirectGotoInstr* backtrack_goto_;
};
-
class Compiler : public AllStatic {
public:
static const intptr_t kNoOSRDeoptId = Thread::kNoDeoptId;
@@ -157,7 +154,6 @@ class Compiler : public AllStatic {
static void AbortBackgroundCompilation(intptr_t deopt_id, const char* msg);
};
-
// Class to run optimizing compilation in a background thread.
// Current implementation: one task per isolate, it dies with the owning
// isolate.
« no previous file with comments | « runtime/vm/compilation_trace.cc ('k') | runtime/vm/compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698