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

Unified Diff: runtime/observatory/lib/src/service/object.dart

Issue 2719503002: Fix checked mode failure of causal_async_star_stack_contents test (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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/service/object.dart
diff --git a/runtime/observatory/lib/src/service/object.dart b/runtime/observatory/lib/src/service/object.dart
index 32a3548d30cba193d02626cb47b5aba4bf33c666..1618aedd72a8a7e600190283279ba0613ab17e22 100644
--- a/runtime/observatory/lib/src/service/object.dart
+++ b/runtime/observatory/lib/src/service/object.dart
@@ -4404,7 +4404,7 @@ class ServiceMetric extends ServiceObject implements M.Metric {
String toString() => "ServiceMetric($_id)";
}
-void printFrames(List<Frame> frames) async {
+Future<Null> printFrames(List<Frame> frames) async {
for (int i = 0; i < frames.length; i++) {
final Frame frame = frames[i];
String frameText = await frame.toUserString();
@@ -4459,7 +4459,7 @@ class Frame extends ServiceObject implements M.Frame {
}
}
- String toUserString() async {
+ Future<String> toUserString() async {
if (function != null) {
return "Frame([$kind] ${function.qualifiedName} "
"${await location.toUserString()})";
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698