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

Unified Diff: pkg/fletchc/lib/src/driver/developer.dart

Issue 1412743004: Add back print that got lost in last minute edit. (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Created 5 years, 2 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: pkg/fletchc/lib/src/driver/developer.dart
diff --git a/pkg/fletchc/lib/src/driver/developer.dart b/pkg/fletchc/lib/src/driver/developer.dart
index c68db375fcfc3f2169d7746306b74237e9362483..eaa56f9b6c960a3f5f95ed247c59b126a61a6727 100644
--- a/pkg/fletchc/lib/src/driver/developer.dart
+++ b/pkg/fletchc/lib/src/driver/developer.dart
@@ -391,7 +391,7 @@ Future<int> run(SessionState state, {String testDebuggerCommands}) async {
Future printTrace() async {
String list = await session.list();
String stackTrace = session.debugState.formatStackTrace();
- if (!stackTrace.isEmpty) (stackTrace);
+ if (!stackTrace.isEmpty) print(stackTrace);
if (!stackTrace.isEmpty) print(list);
}
« 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