Index: sdk/lib/_internal/compiler/implementation/ssa/codegen.dart |
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart |
index 47927478c72f969b5ecd32893072914386db0ac9..ff0e3a9c472dad79bfe7f69195d83680ad30a09d 100644 |
--- a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart |
+++ b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart |
@@ -1803,7 +1803,7 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor { |
HInstruction left = relational.left; |
HInstruction right = relational.right; |
- if (left.isString(compiler) && right.isString(compiler)) { |
+ if (left.isStringOrNull(compiler) && right.isStringOrNull(compiler)) { |
return true; |
} |