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

Unified Diff: pkg/compiler/lib/src/ssa/builder_kernel.dart

Issue 2939033002: Towards compiling Hello World! (Closed)
Patch Set: Fix parameter ordering Created 3 years, 6 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
Index: pkg/compiler/lib/src/ssa/builder_kernel.dart
diff --git a/pkg/compiler/lib/src/ssa/builder_kernel.dart b/pkg/compiler/lib/src/ssa/builder_kernel.dart
index 29efea4b5fe03ec9dde95df1ff3453ffbe707d70..9eed251738e2a1a60f7453d2e3e6e62a19e6f78c 100644
--- a/pkg/compiler/lib/src/ssa/builder_kernel.dart
+++ b/pkg/compiler/lib/src/ssa/builder_kernel.dart
@@ -221,11 +221,6 @@ class KernelSsaGraphBuilder extends ir.Visitor with GraphBuilder {
});
}
- /// Comparator for the canonical order or named arguments.
- int namedOrdering(ir.VariableDeclaration a, ir.VariableDeclaration b) {
- return a.name.compareTo(b.name);
- }
-
/// Builds a generative constructor.
///
/// Generative constructors are built in stages, in effect inlining the

Powered by Google App Engine
This is Rietveld 408576698