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

Unified Diff: dart/runtime/lib/mirrors_patch.dart

Issue 23455028: Mirrors overhaul. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r29550. Created 7 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
Index: dart/runtime/lib/mirrors_patch.dart
diff --git a/dart/runtime/lib/mirrors_patch.dart b/dart/runtime/lib/mirrors_patch.dart
index 4af60c686b55781e2e122ba67ee373456647fc04..b3f2d4d530907dc4328caa590c307ab8ec493c58 100644
--- a/dart/runtime/lib/mirrors_patch.dart
+++ b/dart/runtime/lib/mirrors_patch.dart
@@ -65,3 +65,14 @@ patch class MirrorSystem {
static _mangleName(String name, _MirrorReference lib)
native "Mirrors_mangleName";
}
+
+// TODO(rmacnak): Eliminate this class.
+class MirroredCompilationError {
+ final String message;
+
+ MirroredCompilationError(this.message);
+
+ String toString() {
+ return "Compile-time error during mirrored execution: <$message>";
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698