| Index: client/dom/generated/src/frog/Float64Array.dart
|
| diff --git a/client/dom/generated/src/frog/Float64Array.dart b/client/dom/generated/src/frog/Float64Array.dart
|
| index 5dd61ae595fd808ae614c063f7309509d9bab9b8..31ad1c7350133e42f4abb5f8ee31c1c8b6666a6b 100644
|
| --- a/client/dom/generated/src/frog/Float64Array.dart
|
| +++ b/client/dom/generated/src/frog/Float64Array.dart
|
| @@ -1,21 +1,9 @@
|
|
|
| -class Float64Array extends ArrayBufferView implements List<num> native "Float64Array" {
|
| -
|
| - factory Float64Array(int length) => _construct(length);
|
| -
|
| - factory Float64Array.fromList(List<num> list) => _construct(list);
|
| -
|
| - factory Float64Array.fromBuffer(ArrayBuffer buffer) => _construct(buffer);
|
| -
|
| - static _construct(arg) native 'return new Float64Array(arg);';
|
| +class Float64Array extends ArrayBufferView native "*Float64Array" {
|
|
|
| static final int BYTES_PER_ELEMENT = 8;
|
|
|
| int length;
|
|
|
| - num operator[](int index) native;
|
| -
|
| - void operator[]=(int index, num value) native;
|
| -
|
| Float64Array subarray(int start, [int end = null]) native;
|
| }
|
|
|