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

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

Issue 11138013: Revert "dart2js_mirrors_test added" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/mirrors/dart2js_mirrors_test.dart
diff --git a/tests/lib/mirrors/dart2js_mirrors_test.dart b/tests/lib/mirrors/dart2js_mirrors_test.dart
deleted file mode 100644
index e9e0af090b0d4c0a846654bd43080e72be3472ce..0000000000000000000000000000000000000000
--- a/tests/lib/mirrors/dart2js_mirrors_test.dart
+++ /dev/null
@@ -1,25 +0,0 @@
-#library('dart2js_mirrors_test');
-
-#import('dart:mirrors');
-#import("../../../pkg/unittest/unittest.dart");
-
-void main() {
- try {
- print(currentMirrorSystem());
- fail("UnsupportedOperationException expected");
- } on UnsupportedOperationException catch (e) {
- print(e);
- }
- try {
- print(mirrorSystemOf(null));
- fail("UnsupportedOperationException expected");
- } on UnsupportedOperationException catch (e) {
- print(e);
- }
- try {
- print(reflect(null));
- fail("UnsupportedOperationException expected");
- } on UnsupportedOperationException catch (e) {
- print(e);
- }
-}
« no previous file with comments | « tests/lib/lib.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698