Index: lib/compiler/implementation/ssa/value_set.dart |
diff --git a/lib/compiler/implementation/ssa/value_set.dart b/lib/compiler/implementation/ssa/value_set.dart |
index 06cadcaf5a211e92486459b12a4e915180ccf6c9..4e58e83b9822afd30e7b4f20cd3e618197a33ccc 100644 |
--- a/lib/compiler/implementation/ssa/value_set.dart |
+++ b/lib/compiler/implementation/ssa/value_set.dart |
@@ -8,7 +8,7 @@ class ValueSet { |
ValueSetNode collisions; |
ValueSet() : table = new List<HInstruction>(8); |
- bool isEmpty() => size == 0; |
+ bool get isEmpty => size == 0; |
int get length => size; |
void add(HInstruction instruction) { |