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

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: Fix typo 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 4d7c3a17a1d247b60e48eec0937e55663c1e930f..c00af8303de89df2d3892c2c6f3daba6f8e6a82c 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