| Index: client/dom/generated/src/frog/Uint8Array.dart
|
| diff --git a/client/dom/generated/src/frog/Uint8Array.dart b/client/dom/generated/src/frog/Uint8Array.dart
|
| index 01d89d8824cb8426482b396171116343f0cc1be0..b953ad5eb85b4b70dff56804d9c23565d1b1c769 100644
|
| --- a/client/dom/generated/src/frog/Uint8Array.dart
|
| +++ b/client/dom/generated/src/frog/Uint8Array.dart
|
| @@ -1,13 +1,13 @@
|
|
|
| class Uint8ArrayJs extends ArrayBufferViewJs implements Uint8Array, List<int> native "*Uint8Array" {
|
|
|
| - factory Uint8Array(int length) => _construct(length);
|
| + factory Uint8Array(int length) => _construct_Uint8Array(length);
|
|
|
| - factory Uint8Array.fromList(List<int> list) => _construct(list);
|
| + factory Uint8Array.fromList(List<int> list) => _construct_Uint8Array(list);
|
|
|
| - factory Uint8Array.fromBuffer(ArrayBuffer buffer) => _construct(buffer);
|
| + factory Uint8Array.fromBuffer(ArrayBuffer buffer) => _construct_Uint8Array(buffer);
|
|
|
| - static _construct(arg) native 'return new Uint8Array(arg);';
|
| + static _construct_Uint8Array(arg) native 'return new Uint8Array(arg);';
|
|
|
| static final int BYTES_PER_ELEMENT = 1;
|
|
|
|
|