Chromium Code Reviews| Index: sdk/lib/html/html_common/lists.dart |
| diff --git a/sdk/lib/html/html_common/lists.dart b/sdk/lib/html/html_common/lists.dart |
| index b565aba49dba19e4cdf19874dcc46adebbc9c8e2..5c230a971d30ff7652ec26808b25fcd3f709d68a 100644 |
| --- a/sdk/lib/html/html_common/lists.dart |
| +++ b/sdk/lib/html/html_common/lists.dart |
| @@ -66,3 +66,10 @@ class Lists { |
| return accumulator; |
| } |
| } |
| + |
| +/** |
| + * For accessing underlying node lists, for dart:js interop. |
| + */ |
| +class NodeListWrapper { |
| + List<Node> get rawList; |
| +} |