Chromium Code Reviews

Unified Diff: runtime/lib/deferred_load_patch.dart

Issue 2767533002: Revert "Fix observatory tests broken by running dartfmt." (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « runtime/lib/date_patch.dart ('k') | runtime/lib/developer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/deferred_load_patch.dart
diff --git a/runtime/lib/deferred_load_patch.dart b/runtime/lib/deferred_load_patch.dart
index 1b4cf174dafe50378620afb72f1deb815a6dc425..5c8a597a152d1848257f206043c33a258ce60602 100644
--- a/runtime/lib/deferred_load_patch.dart
+++ b/runtime/lib/deferred_load_patch.dart
@@ -4,13 +4,12 @@
final Set<String> _loadedLibraries = new Set<String>();
-@patch
-class DeferredLibrary {
- @patch
- Future<Null> load() {
+@patch class DeferredLibrary {
+ @patch Future<Null> load() {
// Dummy implementation that should eventually be replaced by real
// implementation.
- Future future = new Future<Null>.value(null);
+ Future future =
+ new Future<Null>.value(null);
_loadedLibraries.add(libraryName);
return future;
}
« no previous file with comments | « runtime/lib/date_patch.dart ('k') | runtime/lib/developer.dart » ('j') | no next file with comments »

Powered by Google App Engine