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

Unified Diff: runtime/lib/byte_array.dart

Issue 11299121: Remove abstract from class members in dart libraries (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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/bin/socket_patch.dart ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/byte_array.dart
===================================================================
--- runtime/lib/byte_array.dart (revision 15207)
+++ runtime/lib/byte_array.dart (working copy)
@@ -115,11 +115,11 @@
abstract class _ByteArrayBase {
- abstract int lengthInBytes();
+ int lengthInBytes();
- abstract int bytesPerElement();
+ int bytesPerElement();
- abstract operator[](int index);
+ operator[](int index);
// Methods implementing the Collection interface.
@@ -1605,7 +1605,7 @@
class _ByteArrayViewBase {
- abstract num operator[](int index);
+ num operator[](int index);
// Methods implementing the Collection interface.
@@ -1641,7 +1641,7 @@
return this.length == 0;
}
- abstract int get length;
+ int get length;
// Methods implementing the List interface.
« no previous file with comments | « runtime/bin/socket_patch.dart ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698