| Index: client/dom/generated/src/wrapping/_NodeListWrappingImplementation.dart
|
| diff --git a/client/dom/generated/src/wrapping/_NodeListWrappingImplementation.dart b/client/dom/generated/src/wrapping/_NodeListWrappingImplementation.dart
|
| index 544384552c037f511a9e6e8ff60147afdc2d36b5..72e51b762433a77b3ffa6f95a44e1ce227c434ea 100644
|
| --- a/client/dom/generated/src/wrapping/_NodeListWrappingImplementation.dart
|
| +++ b/client/dom/generated/src/wrapping/_NodeListWrappingImplementation.dart
|
| @@ -14,9 +14,8 @@ class _NodeListWrappingImplementation extends DOMWrapperBase implements NodeList
|
| 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.");
|
|
|