Index: runtime/lib/byte_array.dart |
diff --git a/runtime/lib/byte_array.dart b/runtime/lib/byte_array.dart |
index f7c26f24fc186c04cd3e763eb01481c45b2b4e21..e073271613c4bcc28061de85a3c93d1fbed54c1e 100644 |
--- a/runtime/lib/byte_array.dart |
+++ b/runtime/lib/byte_array.dart |
@@ -153,7 +153,7 @@ abstract class _ByteArrayBase { |
return Collections.some(this, f); |
} |
- bool isEmpty() { |
+ bool get isEmpty { |
return this.length === 0; |
} |
@@ -1633,7 +1633,7 @@ class _ByteArrayViewBase { |
return Collections.some(this, f);; |
} |
- bool isEmpty() { |
+ bool get isEmpty { |
return this.length === 0; |
} |