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

Unified Diff: tests/compiler/dart2js_extra/deferred/deferred_class_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_class_test.dart
diff --git a/tests/compiler/dart2js_extra/deferred/deferred_class_test.dart b/tests/compiler/dart2js_extra/deferred/deferred_class_test.dart
index 7b6279bb7a7d15cac9e35f268c50ced1bc753943..ae4964acebf8ab5fde2b37dd1d5142628e8853f4 100644
--- a/tests/compiler/dart2js_extra/deferred/deferred_class_test.dart
+++ b/tests/compiler/dart2js_extra/deferred/deferred_class_test.dart
@@ -7,7 +7,7 @@ import 'package:expect/expect.dart';
import 'dart:async';
-@lazy import 'deferred_class_library.dart';
+@lazy import 'deferred_class_library.dart' as lib;
const lazy = const DeferredLibrary('deferred_class_library');
@@ -15,7 +15,7 @@ isNoSuchMethodError(e) => e is NoSuchMethodError;
main() {
var x;
- Expect.throws(() { x = new MyClass(); }, isNoSuchMethodError);
+ Expect.throws(() { x = new lib.MyClass(); }, isNoSuchMethodError);
Expect.isNull(x);
int counter = 0;
asyncStart();
@@ -23,7 +23,7 @@ main() {
Expect.isTrue(didLoad);
Expect.equals(1, ++counter);
print('deferred_class_library was loaded');
- x = new MyClass();
+ x = new lib.MyClass();
Expect.equals(42, x.foo(87));
asyncEnd();
});
@@ -34,12 +34,12 @@ main() {
Expect.isFalse(didLoad);
Expect.equals(2, ++counter);
print('deferred_class_library was loaded');
- x = new MyClass();
+ x = new lib.MyClass();
Expect.equals(42, x.foo(87));
asyncEnd();
});
Expect.equals(0, counter);
Expect.isNull(x);
- Expect.throws(() { x = new MyClass(); }, isNoSuchMethodError);
+ Expect.throws(() { x = new lib.MyClass(); }, isNoSuchMethodError);
Expect.isNull(x);
}

Powered by Google App Engine
This is Rietveld 408576698