Index: pkg/compiler/lib/src/tree_ir/tree_ir_integrity.dart |
diff --git a/pkg/compiler/lib/src/tree_ir/tree_ir_integrity.dart b/pkg/compiler/lib/src/tree_ir/tree_ir_integrity.dart |
index 691a330745d7f7fd4db04acf70600c7bca72e262..ea4078273b7310f125c17b5e70d569c60b7d570e 100644 |
--- a/pkg/compiler/lib/src/tree_ir/tree_ir_integrity.dart |
+++ b/pkg/compiler/lib/src/tree_ir/tree_ir_integrity.dart |
@@ -89,7 +89,7 @@ class CheckTreeIntegrity extends RecursiveVisitor { |
if (labelUses[label] != label.useCount) { |
error('Label $label has ${labelUses[label]} uses ' |
- 'but its reference count is ${label.useCount}'); |
+ 'but its reference count is ${label.useCount}'); |
} |
} |
@@ -152,11 +152,10 @@ class CheckTreeIntegrity extends RecursiveVisitor { |
int writes = varWrites.putIfAbsent(variable, () => 0); |
if (reads != variable.readCount || writes != variable.writeCount) { |
error('Invalid reference count for $variable:\n' |
- '- Variable has $reads reads and $writes writes\n' |
- '- Reference count is ${variable.readCount} reads and ' |
- '${variable.writeCount} writes'); |
+ '- Variable has $reads reads and $writes writes\n' |
+ '- Reference count is ${variable.readCount} reads and ' |
+ '${variable.writeCount} writes'); |
} |
} |
} |
- |
} |