| Index: client/html/src/NodeList.dart
|
| diff --git a/client/html/src/NodeList.dart b/client/html/src/NodeList.dart
|
| index 4e53cc5133b767da5b5850a13c740ef287597b06..d5f403949ae5770fcfc95489d12cbb0bbc0447e6 100644
|
| --- a/client/html/src/NodeList.dart
|
| +++ b/client/html/src/NodeList.dart
|
| @@ -3,5 +3,9 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| interface NodeList extends List<Node> {
|
| + NodeList filter(bool f(Node element));
|
| +
|
| + NodeList getRange(int start, int length);
|
| +
|
| Node get first();
|
| }
|
|
|