| Index: client/html/src/Uint32Array.dart
|
| diff --git a/client/html/generated/src/interface/Uint32Array.dart b/client/html/src/Uint32Array.dart
|
| similarity index 61%
|
| rename from client/html/generated/src/interface/Uint32Array.dart
|
| rename to client/html/src/Uint32Array.dart
|
| index 89f3fca698ff76f0060d239b6f1290d787a7253a..b03a9a339eccce8b607cb92237108c5756354676 100644
|
| --- a/client/html/generated/src/interface/Uint32Array.dart
|
| +++ b/client/html/src/Uint32Array.dart
|
| @@ -2,12 +2,17 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -// WARNING: Do not edit - generated code.
|
| -
|
| -interface Uint32Array extends ArrayBufferView {
|
| +interface Uint32Array extends ArrayBufferView
|
| + default Uint32ArrayWrappingImplementation {
|
|
|
| static final int BYTES_PER_ELEMENT = 4;
|
|
|
| + Uint32Array(int length);
|
| +
|
| + Uint32Array.from(List<num> list);
|
| +
|
| + Uint32Array.fromBuffer(ArrayBuffer buffer);
|
| +
|
| int get length();
|
|
|
| Uint32Array subarray(int start, [int end]);
|
|
|