Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1483)

Unified Diff: runtime/lib/growable_array.dart

Issue 10928051: Remove more () from getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/lib/array.dart ('k') | runtime/lib/regexp_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/growable_array.dart
diff --git a/runtime/lib/growable_array.dart b/runtime/lib/growable_array.dart
index 0ca28fa03e614b8348d083982c3f1a6081960a65..5cb8a021d4ffc6f4eabb78a7ed18896e5279bfd7 100644
--- a/runtime/lib/growable_array.dart
+++ b/runtime/lib/growable_array.dart
@@ -78,9 +78,9 @@ class GrowableObjectArray<T> implements List<T> {
factory GrowableObjectArray.fromObjectArray(ObjectArray<T> data)
native "GrowableObjectArray_allocate";
- int get length() native "GrowableObjectArray_getLength";
+ int get length native "GrowableObjectArray_getLength";
- int get capacity() native "GrowableObjectArray_getCapacity";
+ int get capacity native "GrowableObjectArray_getCapacity";
void set length(int new_length) {
if (new_length > capacity) {
« no previous file with comments | « runtime/lib/array.dart ('k') | runtime/lib/regexp_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698