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

Unified Diff: frog/minfrog.dart

Issue 8823010: frog: life is better with colors :) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: '' Created 9 years 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: frog/minfrog.dart
diff --git a/frog/minfrog.dart b/frog/minfrog.dart
index 575900985bb16084dc3797dfa21e9e70b1035ca7..51c0398e1135c9d5f01ecb2b9cf2e54a5afe9cd6 100644
--- a/frog/minfrog.dart
+++ b/frog/minfrog.dart
@@ -18,6 +18,11 @@ void main() {
var argv = new List.from(process.argv);
if (compile(homedir, argv, new NodeFileSystem())) {
+ if (options.outfile !== null) {
Jennifer Messerly 2011/12/06 22:50:03 I won't add this message unless doing "compileOnly
Siggi Cherem (dart-lang) 2011/12/06 23:37:38 The other opinion I heard earlier today was that p
+ print('Compilation succeded. Code generated in ${options.outfile}');
+ } else {
+ print('Compilation succeded.');
+ }
var code = world.getGeneratedCode();
if (!options.compileOnly) {
process.argv = [argv[0], argv[1]];

Powered by Google App Engine
This is Rietveld 408576698