OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // patch classes for Int8List ..... Float64List and ByteData implementations. | 5 // patch classes for Int8List ..... Float64List and ByteData implementations. |
6 | 6 |
7 patch class Int8List { | 7 patch class Int8List { |
8 /* patch */ factory Int8List(int length) { | 8 /* patch */ factory Int8List(int length) { |
9 return new _Int8Array(length); | 9 return new _Int8Array(length); |
10 } | 10 } |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 if (length == 0) throw new StateError("No elements"); | 449 if (length == 0) throw new StateError("No elements"); |
450 throw new StateError("More than one element"); | 450 throw new StateError("More than one element"); |
451 } | 451 } |
452 | 452 |
453 int min([int compare(int a, int b)]) => | 453 int min([int compare(int a, int b)]) => |
454 IterableMixinWorkaround.min(this, compare); | 454 IterableMixinWorkaround.min(this, compare); |
455 | 455 |
456 int max([int compare(int a, int b)]) => | 456 int max([int compare(int a, int b)]) => |
457 IterableMixinWorkaround.max(this, compare); | 457 IterableMixinWorkaround.max(this, compare); |
458 | 458 |
459 void removeRange(int start, int length) { | 459 void removeRange(int start, int end) { |
460 throw new UnsupportedError( | 460 throw new UnsupportedError( |
461 "Cannot remove from a non-extendable array"); | 461 "Cannot remove from a non-extendable array"); |
462 } | 462 } |
463 | 463 |
464 void insertRange(int start, int length, [initialValue]) { | 464 void insertRange(int start, int length, [initialValue]) { |
465 throw new UnsupportedError( | 465 throw new UnsupportedError( |
466 "Cannot add to a non-extendable array"); | 466 "Cannot add to a non-extendable array"); |
467 } | 467 } |
468 | 468 |
469 List toList() { | 469 List toList() { |
(...skipping 2616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3086 return value; | 3086 return value; |
3087 } | 3087 } |
3088 return object; | 3088 return object; |
3089 } | 3089 } |
3090 | 3090 |
3091 | 3091 |
3092 void _throwRangeError(int index, int length) { | 3092 void _throwRangeError(int index, int length) { |
3093 String message = "$index must be in the range [0..$length)"; | 3093 String message = "$index must be in the range [0..$length)"; |
3094 throw new RangeError(message); | 3094 throw new RangeError(message); |
3095 } | 3095 } |
OLD | NEW |