| OLD | NEW |
| 1 | 1 |
| 2 class _Float64ArrayJs extends _ArrayBufferViewJs implements Float64Array, List<n
um> native "*Float64Array" { | 2 class _Float64ArrayJs extends _ArrayBufferViewJs implements Float64Array, List<n
um> native "*Float64Array" { |
| 3 | 3 |
| 4 factory Float64Array(int length) => _construct_Float64Array(length); | 4 factory Float64Array(int length) => _construct_Float64Array(length); |
| 5 | 5 |
| 6 factory Float64Array.fromList(List<num> list) => _construct_Float64Array(list)
; | 6 factory Float64Array.fromList(List<num> list) => _construct_Float64Array(list)
; |
| 7 | 7 |
| 8 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _construct_Float64Array
(buffer); | 8 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _construct_Float64Array
(buffer); |
| 9 | 9 |
| 10 static _construct_Float64Array(arg) native 'return new Float64Array(arg);'; | 10 static _construct_Float64Array(arg) native 'return new Float64Array(arg);'; |
| 11 | 11 |
| 12 static final int BYTES_PER_ELEMENT = 8; | 12 static final int BYTES_PER_ELEMENT = 8; |
| 13 | 13 |
| 14 int get length() native "return this.length;"; | 14 final int length; |
| 15 | 15 |
| 16 num operator[](int index) native "return this[index];"; | 16 num operator[](int index) native "return this[index];"; |
| 17 | 17 |
| 18 void operator[]=(int index, num value) native "this[index] = value"; | 18 void operator[]=(int index, num value) native "this[index] = value"; |
| 19 // -- start List<num> mixins. | 19 // -- start List<num> mixins. |
| 20 // num is the element type. | 20 // num is the element type. |
| 21 | 21 |
| 22 // From Iterable<num>: | 22 // From Iterable<num>: |
| 23 | 23 |
| 24 Iterator<num> iterator() { | 24 Iterator<num> iterator() { |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 } | 81 } |
| 82 List<num> getRange(int start, int length) => | 82 List<num> getRange(int start, int length) => |
| 83 _Lists.getRange(this, start, length, <num>[]); | 83 _Lists.getRange(this, start, length, <num>[]); |
| 84 | 84 |
| 85 // -- end List<num> mixins. | 85 // -- end List<num> mixins. |
| 86 | 86 |
| 87 void setElements(Object array, [int offset = null]) native; | 87 void setElements(Object array, [int offset = null]) native; |
| 88 | 88 |
| 89 _Float64ArrayJs subarray(int start, [int end = null]) native; | 89 _Float64ArrayJs subarray(int start, [int end = null]) native; |
| 90 } | 90 } |
| OLD | NEW |