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

Unified Diff: tests/lib/mirrors/double_export_test.dart

Issue 312713003: Repro for Issue 19173 - Mirrors + dart2js + checked mode (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: oops Created 6 years, 7 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/lib/lib.status ('k') | tests/lib/mirrors/repo_19173/core_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/mirrors/double_export_test.dart
diff --git a/tests/lib/mirrors/double_export_test.dart b/tests/lib/mirrors/double_export_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..577027d3af03fa6ef12a93f111531fb0d70e7680
--- /dev/null
+++ b/tests/lib/mirrors/double_export_test.dart
@@ -0,0 +1,13 @@
+import 'dart:mirrors';
+
+import 'repo_19173/error_matchers.dart';
+
+void main() {
+ ClassMirror typeMirror = reflectType(Bar);
+ var decs = typeMirror.declarations;
+ print(decs.length);
+}
+
+class Bar {
+ int a;
+}
« no previous file with comments | « tests/lib/lib.status ('k') | tests/lib/mirrors/repo_19173/core_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698