OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // WARNING: Do not edit - generated code. | |
6 | |
7 class _NodeSelectorWrappingImplementation extends DOMWrapperBase implements Node
Selector { | |
8 _NodeSelectorWrappingImplementation() : super() {} | |
9 | |
10 static create__NodeSelectorWrappingImplementation() native { | |
11 return new _NodeSelectorWrappingImplementation(); | |
12 } | |
13 | |
14 Element querySelector(String selectors) { | |
15 return _querySelector(this, selectors); | |
16 } | |
17 static Element _querySelector(receiver, selectors) native; | |
18 | |
19 NodeList querySelectorAll(String selectors) { | |
20 return _querySelectorAll(this, selectors); | |
21 } | |
22 static NodeList _querySelectorAll(receiver, selectors) native; | |
23 | |
24 String get typeName() { return "NodeSelector"; } | |
25 } | |
OLD | NEW |