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

Unified Diff: runtime/lib/mirrors_patch.dart

Issue 2751423005: Run dartfmt on all files under runtime. (Closed)
Patch Set: Run dartfmt on all files under runtime. Created 3 years, 9 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 | « runtime/lib/math_patch.dart ('k') | runtime/lib/null_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/mirrors_patch.dart
diff --git a/runtime/lib/mirrors_patch.dart b/runtime/lib/mirrors_patch.dart
index c168026810456469b4375502ed9f222898b6f9e7..25c9232f718e934ea879b1c7b4ef8062f60106bd 100644
--- a/runtime/lib/mirrors_patch.dart
+++ b/runtime/lib/mirrors_patch.dart
@@ -9,7 +9,8 @@ import "dart:_internal" as internal;
/**
* Returns a [MirrorSystem] for the current isolate.
*/
-@patch MirrorSystem currentMirrorSystem() {
+@patch
+MirrorSystem currentMirrorSystem() {
return _Mirrors.currentMirrorSystem();
}
@@ -19,7 +20,8 @@ import "dart:_internal" as internal;
* This only works if this mirror system is associated with the
* current running isolate.
*/
-@patch InstanceMirror reflect(Object reflectee) {
+@patch
+InstanceMirror reflect(Object reflectee) {
return _Mirrors.reflect(reflectee);
}
@@ -29,16 +31,20 @@ import "dart:_internal" as internal;
*
* This only works with objects local to the current isolate.
*/
-@patch ClassMirror reflectClass(Type key) {
+@patch
+ClassMirror reflectClass(Type key) {
return _Mirrors.reflectClass(key);
}
-@patch TypeMirror reflectType(Type key, [List<Type> typeArguments]) {
+@patch
+TypeMirror reflectType(Type key, [List<Type> typeArguments]) {
return _Mirrors.reflectType(key, typeArguments);
}
-@patch class MirrorSystem {
- @patch LibraryMirror findLibrary(Symbol libraryName) {
+@patch
+class MirrorSystem {
+ @patch
+ LibraryMirror findLibrary(Symbol libraryName) {
var candidates =
libraries.values.where((lib) => lib.simpleName == libraryName);
if (candidates.length == 1) {
@@ -47,16 +53,18 @@ import "dart:_internal" as internal;
if (candidates.length > 1) {
var uris = candidates.map((lib) => lib.uri.toString()).toList();
throw new Exception("There are multiple libraries named "
- "'${getName(libraryName)}': $uris");
+ "'${getName(libraryName)}': $uris");
}
throw new Exception("There is no library named '${getName(libraryName)}'");
}
- @patch static String getName(Symbol symbol) {
+ @patch
+ static String getName(Symbol symbol) {
return internal.Symbol.getUnmangledName(symbol);
}
- @patch static Symbol getSymbol(String name, [LibraryMirror library]) {
+ @patch
+ static Symbol getSymbol(String name, [LibraryMirror library]) {
if ((library != null && library is! _LocalLibraryMirror) ||
((name.length > 0) && (name[0] == '_') && (library == null))) {
throw new ArgumentError(library);
« no previous file with comments | « runtime/lib/math_patch.dart ('k') | runtime/lib/null_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698