| Index: client/dom/generated/src/frog/Uint32Array.dart
|
| diff --git a/client/dom/generated/src/frog/Uint32Array.dart b/client/dom/generated/src/frog/Uint32Array.dart
|
| index 95140c27d5213545acd1da8a1eceb7f777301115..365834dccc3c7baaba07de28dbc05acbb77bf73e 100644
|
| --- a/client/dom/generated/src/frog/Uint32Array.dart
|
| +++ b/client/dom/generated/src/frog/Uint32Array.dart
|
| @@ -1,13 +1,13 @@
|
|
|
| class Uint32ArrayJs extends ArrayBufferViewJs implements Uint32Array, List<int> native "*Uint32Array" {
|
|
|
| - factory Uint32Array(int length) => _construct(length);
|
| + factory Uint32Array(int length) => _construct_Uint32Array(length);
|
|
|
| - factory Uint32Array.fromList(List<int> list) => _construct(list);
|
| + factory Uint32Array.fromList(List<int> list) => _construct_Uint32Array(list);
|
|
|
| - factory Uint32Array.fromBuffer(ArrayBuffer buffer) => _construct(buffer);
|
| + factory Uint32Array.fromBuffer(ArrayBuffer buffer) => _construct_Uint32Array(buffer);
|
|
|
| - static _construct(arg) native 'return new Uint32Array(arg);';
|
| + static _construct_Uint32Array(arg) native 'return new Uint32Array(arg);';
|
|
|
| static final int BYTES_PER_ELEMENT = 4;
|
|
|
|
|