| Index: dart/lib/compiler/implementation/ssa/value_set.dart
|
| diff --git a/dart/lib/compiler/implementation/ssa/value_set.dart b/dart/lib/compiler/implementation/ssa/value_set.dart
|
| index 98a1d5322cff04611f24d8d43369c3f8c1ee4d74..eef133b5ddbc43f5d9fa9dd9a03eba6b3dc9cdff 100644
|
| --- a/dart/lib/compiler/implementation/ssa/value_set.dart
|
| +++ b/dart/lib/compiler/implementation/ssa/value_set.dart
|
| @@ -9,7 +9,7 @@ class ValueSet {
|
| ValueSet() : table = new List<HInstruction>(8);
|
|
|
| bool isEmpty() => size == 0;
|
| - int get length() => size;
|
| + int get length => size;
|
|
|
| void add(HInstruction instruction) {
|
| assert(lookup(instruction) === null);
|
|
|