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

Unified Diff: runtime/observatory/lib/src/elements/sentinel_value.dart

Issue 2345023003: Use dartfmt on Observatory code (Closed)
Patch Set: merge Created 4 years, 3 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/observatory/lib/src/elements/sentinel_value.dart
diff --git a/runtime/observatory/lib/src/elements/sentinel_value.dart b/runtime/observatory/lib/src/elements/sentinel_value.dart
index 70f648973c9eb93fbabf7df86d5f9cc18a992c26..7e1483f556b40efb87c81e1af06742b864514a72 100644
--- a/runtime/observatory/lib/src/elements/sentinel_value.dart
+++ b/runtime/observatory/lib/src/elements/sentinel_value.dart
@@ -54,19 +54,18 @@ class SentinelValueElement extends HtmlElement implements Renderable {
return 'This object has been reclaimed by the garbage collector.';
case M.SentinelKind.expired:
return 'The handle to this object has expired. '
- 'Consider refreshing the page.';
+ 'Consider refreshing the page.';
case M.SentinelKind.notInitialized:
return 'This object will be initialized once it is accessed by '
- 'the program.';
+ 'the program.';
case M.SentinelKind.initializing:
return 'This object is currently being initialized.';
case M.SentinelKind.optimizedOut:
return 'This object is no longer needed and has been removed by the '
- 'optimizing compiler.';
+ 'optimizing compiler.';
case M.SentinelKind.free:
return '';
}
throw new Exception('Unknown SentinelKind: $kind');
}
-
}
« no previous file with comments | « runtime/observatory/lib/src/elements/script_view.dart ('k') | runtime/observatory/lib/src/elements/sentinel_view.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698