mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 14:32:24 +00:00
Fix error message
R=jacobr@google.com Review URL: https://codereview.chromium.org/2329493002 .
This commit is contained in:
parent
8c11f5ec0b
commit
e52613f151
2 changed files with 3 additions and 2 deletions
|
@ -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(' ')}
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue