| Index: client/dom/generated/src/wrapping/_HTMLCollectionWrappingImplementation.dart
|
| diff --git a/client/dom/generated/src/wrapping/_HTMLCollectionWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLCollectionWrappingImplementation.dart
|
| index 921de5f3b4e824c7ce6e0f7aaa93c71e855c1c6c..b01cc15380fcad13608bd3214a55128535b97292 100644
|
| --- a/client/dom/generated/src/wrapping/_HTMLCollectionWrappingImplementation.dart
|
| +++ b/client/dom/generated/src/wrapping/_HTMLCollectionWrappingImplementation.dart
|
| @@ -14,9 +14,8 @@ class _HTMLCollectionWrappingImplementation extends DOMWrapperBase implements HT
|
| int get length() { return _get_length(this); }
|
| static int _get_length(var _this) native;
|
|
|
| - Node operator[](int index) {
|
| - return item(index);
|
| - }
|
| + Node operator[](int index) { return _index(this, index); }
|
| + static Node _index(var _this, int index) native;
|
|
|
| void operator[]=(int index, Node value) {
|
| throw new UnsupportedOperationException("Cannot assign element of immutable List.");
|
|
|