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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/dart2js.dart

Issue 27524003: Generate tear-off closures dynamically. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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: dart/sdk/lib/_internal/compiler/implementation/dart2js.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/dart2js.dart b/dart/sdk/lib/_internal/compiler/implementation/dart2js.dart
index 7869913ae7b2ade37f4be09a24e6dfb852bf0bef..1e271b8c73b57f61207960828e78c0fd157b945d 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/dart2js.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/dart2js.dart
@@ -604,9 +604,9 @@ void helpAndFail(String message) {
void main(List<String> arguments) {
runZoned(() => compilerMain(arguments), onError: (exception, trace) {
try {
- print('Internal error: $exception');
+ print('The compiler crashed: $exception');
} catch (ignored) {
- print('Internal error: error while printing exception');
+ print('The compiler crashed: error while printing exception');
}
try {

Powered by Google App Engine
This is Rietveld 408576698