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

Unified Diff: lib/compiler/implementation/ssa/builder.dart

Issue 10939016: Add missing space in error message for missing constructor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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: lib/compiler/implementation/ssa/builder.dart
diff --git a/lib/compiler/implementation/ssa/builder.dart b/lib/compiler/implementation/ssa/builder.dart
index 9baeb6c6ddfbdb3ce9db6e3800a32d700b716432..26b818033321d06165af32c06b21318a1c60d804 100644
--- a/lib/compiler/implementation/ssa/builder.dart
+++ b/lib/compiler/implementation/ssa/builder.dart
@@ -2828,7 +2828,7 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
Message message = error.errorMessage;
if (message.kind == MessageKind.CANNOT_FIND_CONSTRUCTOR) {
generateThrowNoSuchMethod(node.send,
- getTargetName(error, 'constructor'),
+ getTargetName(error, 'constructor '),
kasperl 2012/09/18 12:50:16 Nit: Maybe the getTargetName should be changed to
karlklose 2012/09/18 13:20:17 Done.
node.send.arguments);
} else if (message.kind == MessageKind.CANNOT_RESOLVE) {
generateRuntimeError(node.send, message.message);
« 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