Fix error message

R=jacobr@google.com

Review URL: https://codereview.chromium.org/2329493002 .
This commit is contained in:
Vijay Menon 2016-09-09 09:02:50 -07:00
parent 8c11f5ec0b
commit e52613f151
2 changed files with 3 additions and 2 deletions

View file

@ -68,7 +68,7 @@ int compile(List<String> args, {void printFn(Object obj)}) {
printFn('''
We're sorry, you've found a bug in our compiler.
You can report this bug at:
https://github.com/dart-lang/dev_compiler/issues
https://github.com/dart-lang/sdk/issues/labels/area-dev-compiler
Please include the information below in your report, along with
any other information that may help us track it down. Thanks!
dartdevc arguments: ${args.join(' ')}

View file

@ -60,7 +60,8 @@ int _handleError(dynamic error, dynamic stackTrace, List<String> args,
messageHandler("");
messageHandler("We're sorry, you've found a bug in our compiler.");
messageHandler("You can report this bug at:");
messageHandler(" https://github.com/dart-lang/dev_compiler/issues");
messageHandler(
" https://github.com/dart-lang/sdk/issues/labels/area-dev-compiler");
messageHandler("");
messageHandler(
"Please include the information below in your report, along with");