| Index: client/dom/generated/src/wrapping/_Int16ArrayWrappingImplementation.dart
|
| diff --git a/client/dom/generated/src/wrapping/_Int16ArrayWrappingImplementation.dart b/client/dom/generated/src/wrapping/_Int16ArrayWrappingImplementation.dart
|
| index 6b5432adfbbab286d467a0f7de08a98923187565..6cb7af2acb2ca05c592a3bea02e6f03eded19f2c 100644
|
| --- a/client/dom/generated/src/wrapping/_Int16ArrayWrappingImplementation.dart
|
| +++ b/client/dom/generated/src/wrapping/_Int16ArrayWrappingImplementation.dart
|
| @@ -107,6 +107,18 @@ class _Int16ArrayWrappingImplementation extends _ArrayBufferViewWrappingImplemen
|
| return new _FixedSizeListIterator<int>(this);
|
| }
|
|
|
| + void setElements(Object array, [int offset = null]) {
|
| + if (offset === null) {
|
| + _setElements(this, array);
|
| + return;
|
| + } else {
|
| + _setElements_2(this, array, offset);
|
| + return;
|
| + }
|
| + }
|
| + static void _setElements(receiver, array) native;
|
| + static void _setElements_2(receiver, array, offset) native;
|
| +
|
| Int16Array subarray(int start, [int end = null]) {
|
| if (end === null) {
|
| return _subarray(this, start);
|
|
|