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

Unified Diff: sdk/lib/_internal/compiler/implementation/ssa/codegen.dart

Issue 23496037: Turn a Dart String + String into a JavaScript String + String. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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
Index: sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
===================================================================
--- sdk/lib/_internal/compiler/implementation/ssa/codegen.dart (revision 27280)
+++ sdk/lib/_internal/compiler/implementation/ssa/codegen.dart (working copy)
@@ -1506,7 +1506,7 @@
// list class is instantiated.
world.registerInstantiatedClass(
compiler.listClass, work.resolutionTree);
- } else if (target == backend.jsStringConcat) {
+ } else if (target == backend.jsStringOperatorAdd) {
push(new js.Binary('+', object, arguments[0]), node);
return;
} else if (target.isNative() && target.isFunction()

Powered by Google App Engine
This is Rietveld 408576698