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

Unified Diff: runtime/lib/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 | « no previous file | runtime/lib/growable_array.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/array.dart
diff --git a/runtime/lib/array.dart b/runtime/lib/array.dart
index 5607398ec221b9d4b3937d33b7b01fa63dd70a84..b0dcf3a6efe844432ef491910f53a682f3d3d9bc 100644
--- a/runtime/lib/array.dart
+++ b/runtime/lib/array.dart
@@ -16,7 +16,7 @@ class ObjectArray<E> implements List<E> {
return Collections.collectionToString(this);
}
- int get length() native "ObjectArray_getLength";
+ int get length native "ObjectArray_getLength";
void _copyFromObjectArray(ObjectArray src,
int srcStart,
@@ -159,7 +159,7 @@ class ImmutableArray<E> implements List<E> {
"Cannot modify an immutable array");
}
- int get length() native "ObjectArray_getLength";
+ int get length native "ObjectArray_getLength";
void copyFrom(List src, int srcStart, int dstStart, int count) {
throw const UnsupportedOperationException(
« no previous file with comments | « no previous file | runtime/lib/growable_array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698