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

Unified Diff: frog/leg/ssa/nodes.dart

Issue 9642001: Make string juxtaposition combine properly with string interpolations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Refactor juxtaposition handling. Created 8 years, 9 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: frog/leg/ssa/nodes.dart
diff --git a/frog/leg/ssa/nodes.dart b/frog/leg/ssa/nodes.dart
index 9288b5caf4d87849920ce36448b7a23bcd222ed7..b1e1e57d8d1d281bc39bb1df1e4406a66b99073b 100644
--- a/frog/leg/ssa/nodes.dart
+++ b/frog/leg/ssa/nodes.dart
@@ -1380,6 +1380,7 @@ class HAdd extends HBinaryArithmetic {
}
AddOperation get operation() => const AddOperation();
+
int typeCode() => 5;
bool typeEquals(other) => other is HAdd;
bool dataEquals(HInstruction other) => true;

Powered by Google App Engine
This is Rietveld 408576698