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

Unified Diff: tests/compiler/dart2js/reexport_handled_test.dart

Issue 11747010: Process handled exports correctly. (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
« no previous file with comments | « tests/compiler/dart2js/mock_compiler.dart ('k') | tests/language/reexport_core_helper.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/reexport_handled_test.dart
diff --git a/tests/compiler/dart2js/reexport_handled_test.dart b/tests/compiler/dart2js/reexport_handled_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..766d1a740f41a092ffc68c51ef0621f69e3a2333
--- /dev/null
+++ b/tests/compiler/dart2js/reexport_handled_test.dart
@@ -0,0 +1,53 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library reexport_handled_test;
+
+import 'dart:uri';
+import 'mock_compiler.dart';
+import '../../../sdk/lib/_internal/compiler/implementation/elements/elements.dart'
+ show Element,
+ LibraryElement;
+
+final exportingLibraryUri = new Uri('exporting.dart');
+const String EXPORTING_LIBRARY_SOURCE = '''
+library exporting;
+var foo;
+''';
+
+final reexportingLibraryUri = new Uri('reexporting.dart');
+const String REEXPORTING_LIBRARY_SOURCE = '''
+library reexporting;
+export 'exporting.dart';
+''';
+
+void main() {
+ var compiler = new MockCompiler();
+ compiler.registerSource(exportingLibraryUri, EXPORTING_LIBRARY_SOURCE);
+ compiler.registerSource(reexportingLibraryUri, REEXPORTING_LIBRARY_SOURCE);
+
+ // Load exporting library before the reexporting library.
+ var exportingLibrary = compiler.libraryLoader.loadLibrary(
+ exportingLibraryUri, null, exportingLibraryUri);
+ Expect.isTrue(exportingLibrary.exportsHandled);
+ var foo = findInExports(exportingLibrary, 'foo');
+ Expect.isNotNull(foo);
+ Expect.isTrue(foo.isField());
+
+ // Load reexporting library when exports are handled on the exporting library.
+ var reexportingLibrary = compiler.libraryLoader.loadLibrary(
+ reexportingLibraryUri, null, reexportingLibraryUri);
+ foo = findInExports(reexportingLibrary, 'foo');
+ Expect.isNotNull(foo);
+ Expect.isTrue(foo.isField());
+}
+
+Element findInExports(LibraryElement library, String name) {
+ for (var export in library.exports) {
+ if (export.name.slowToString() == name) {
+ return export;
+ }
+ }
+ return null;
+}
« no previous file with comments | « tests/compiler/dart2js/mock_compiler.dart ('k') | tests/language/reexport_core_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698