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

Unified Diff: runtime/lib/mirrors_impl.dart

Issue 2705593002: Fix various nits in VM patch files. (Closed)
Patch Set: Created 3 years, 10 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: runtime/lib/mirrors_impl.dart
diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart
index f152adbc7334cffa00596224455530aecd15e020..8336126f2c24775bd52fc2711308e4731670dac1 100644
--- a/runtime/lib/mirrors_impl.dart
+++ b/runtime/lib/mirrors_impl.dart
@@ -9,7 +9,7 @@ final _emptyList = new UnmodifiableListView([]);
class _InternalMirrorError {
final String _msg;
- const _InternalMirrorError(String this._msg);
+ const _InternalMirrorError(this._msg);
String toString() => _msg;
}

Powered by Google App Engine
This is Rietveld 408576698