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

Unified Diff: sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart

Issue 11967010: Internal libraries supported. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 7 years, 11 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: sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
index 6dd5c79ad389c2c6fbd43a550586ef33ae426975..e2be554f3df6b06fb8244b9d93c5d7688ec74aff 100644
--- a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
+++ b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
@@ -579,7 +579,7 @@ List sorted(Iterable l, comparison) {
}
compareElements(e0, e1) {
- int result = compareBy((e) => e.getLibrary().uri.toString())(e0, e1);
+ int result = compareBy((e) => e.getLibrary().canonicalUri.toString())(e0, e1);
if (result != 0) return result;
return compareBy((e) => e.position().charOffset)(e0, e1);
}

Powered by Google App Engine
This is Rietveld 408576698