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

Unified Diff: test/codegen/lib/mirrors/library_imports_hidden.dart

Issue 2265533002: Add mirrors tests (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 4 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: test/codegen/lib/mirrors/library_imports_hidden.dart
diff --git a/test/codegen/language/cha_deopt1_deferred_lib.dart b/test/codegen/lib/mirrors/library_imports_hidden.dart
similarity index 54%
copy from test/codegen/language/cha_deopt1_deferred_lib.dart
copy to test/codegen/lib/mirrors/library_imports_hidden.dart
index fc0731568cc3de0060136578168eb59ef568299e..deccc64ad16c3d3f4b06b62231c2989630bf0cbd 100644
--- a/test/codegen/language/cha_deopt1_deferred_lib.dart
+++ b/test/codegen/lib/mirrors/library_imports_hidden.dart
@@ -2,12 +2,9 @@
// 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.
-import "cha_deopt1_lib.dart";
+library library_imports_hidden;
-class U extends T {
+import 'library_imports_a.dart' hide somethingFromA, somethingFromBoth;
+import 'library_imports_b.dart' hide somethingFromB;
- m() => "good horse";
-
-}
-
-make_u() => new U();
+var somethingFromHidden;
« no previous file with comments | « test/codegen/lib/mirrors/library_imports_deferred_test.dart ('k') | test/codegen/lib/mirrors/library_imports_hidden_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698