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

Unified Diff: tests/compiler/dart2js_extra/deferred/deferred_constant2_test.dart

Issue 169703003: Add prefix constraints for deferred imports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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: tests/compiler/dart2js_extra/deferred/deferred_constant2_test.dart
diff --git a/tests/compiler/dart2js_extra/deferred/deferred_constant2_test.dart b/tests/compiler/dart2js_extra/deferred/deferred_constant2_test.dart
index db7e9eb962f60cac8e94718685ad7300073bbd66..cb67911a8d038faa6105ae73375fb5489ab01b32 100644
--- a/tests/compiler/dart2js_extra/deferred/deferred_constant2_test.dart
+++ b/tests/compiler/dart2js_extra/deferred/deferred_constant2_test.dart
@@ -7,7 +7,7 @@ import 'package:expect/expect.dart';
import 'dart:async';
-@lazy import 'deferred_class_library2.dart';
+@lazy import 'deferred_class_library2.dart' as lib;
const lazy = const DeferredLibrary('deferred_class_library2');
@@ -15,7 +15,7 @@ main() {
asyncStart();
lazy.load().then((bool didLoad) {
Expect.isTrue(didLoad);
- Expect.equals(499, C1.value);
+ Expect.equals(499, lib.C1.value);
asyncEnd();
});
}

Powered by Google App Engine
This is Rietveld 408576698