Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: client/dom/generated/src/wrapping/_TreeWalkerWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _TreeWalkerWrappingImplementation extends DOMWrapperBase implements TreeWa lker { 7 class _TreeWalkerWrappingImplementation extends DOMWrapperBase implements TreeWa lker {
8 _TreeWalkerWrappingImplementation() : super() {} 8 _TreeWalkerWrappingImplementation() : super() {}
9 9
10 static create__TreeWalkerWrappingImplementation() native { 10 static create__TreeWalkerWrappingImplementation() native {
11 return new _TreeWalkerWrappingImplementation(); 11 return new _TreeWalkerWrappingImplementation();
12 } 12 }
13 13
14 Node get currentNode() { return _get__TreeWalker_currentNode(this); } 14 Node get currentNode() { return _get_currentNode(this); }
15 static Node _get__TreeWalker_currentNode(var _this) native; 15 static Node _get_currentNode(var _this) native;
16 16
17 void set currentNode(Node value) { _set__TreeWalker_currentNode(this, value); } 17 void set currentNode(Node value) { _set_currentNode(this, value); }
18 static void _set__TreeWalker_currentNode(var _this, Node value) native; 18 static void _set_currentNode(var _this, Node value) native;
19 19
20 bool get expandEntityReferences() { return _get__TreeWalker_expandEntityRefere nces(this); } 20 bool get expandEntityReferences() { return _get_expandEntityReferences(this); }
21 static bool _get__TreeWalker_expandEntityReferences(var _this) native; 21 static bool _get_expandEntityReferences(var _this) native;
22 22
23 NodeFilter get filter() { return _get__TreeWalker_filter(this); } 23 NodeFilter get filter() { return _get_filter(this); }
24 static NodeFilter _get__TreeWalker_filter(var _this) native; 24 static NodeFilter _get_filter(var _this) native;
25 25
26 Node get root() { return _get__TreeWalker_root(this); } 26 Node get root() { return _get_root(this); }
27 static Node _get__TreeWalker_root(var _this) native; 27 static Node _get_root(var _this) native;
28 28
29 int get whatToShow() { return _get__TreeWalker_whatToShow(this); } 29 int get whatToShow() { return _get_whatToShow(this); }
30 static int _get__TreeWalker_whatToShow(var _this) native; 30 static int _get_whatToShow(var _this) native;
31 31
32 Node firstChild() { 32 Node firstChild() {
33 return _firstChild(this); 33 return _firstChild(this);
34 } 34 }
35 static Node _firstChild(receiver) native; 35 static Node _firstChild(receiver) native;
36 36
37 Node lastChild() { 37 Node lastChild() {
38 return _lastChild(this); 38 return _lastChild(this);
39 } 39 }
40 static Node _lastChild(receiver) native; 40 static Node _lastChild(receiver) native;
(...skipping 18 matching lines...) Expand all
59 } 59 }
60 static Node _previousNode(receiver) native; 60 static Node _previousNode(receiver) native;
61 61
62 Node previousSibling() { 62 Node previousSibling() {
63 return _previousSibling(this); 63 return _previousSibling(this);
64 } 64 }
65 static Node _previousSibling(receiver) native; 65 static Node _previousSibling(receiver) native;
66 66
67 String get typeName() { return "TreeWalker"; } 67 String get typeName() { return "TreeWalker"; }
68 } 68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698