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

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

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months 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
(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 _NodeIteratorWrappingImplementation extends DOMWrapperBase implements Node Iterator {
8 _NodeIteratorWrappingImplementation() : super() {}
9
10 static create__NodeIteratorWrappingImplementation() native {
11 return new _NodeIteratorWrappingImplementation();
12 }
13
14 bool get expandEntityReferences() { return _get_expandEntityReferences(this); }
15 static bool _get_expandEntityReferences(var _this) native;
16
17 NodeFilter get filter() { return _get_filter(this); }
18 static NodeFilter _get_filter(var _this) native;
19
20 bool get pointerBeforeReferenceNode() { return _get_pointerBeforeReferenceNode (this); }
21 static bool _get_pointerBeforeReferenceNode(var _this) native;
22
23 Node get referenceNode() { return _get_referenceNode(this); }
24 static Node _get_referenceNode(var _this) native;
25
26 Node get root() { return _get_root(this); }
27 static Node _get_root(var _this) native;
28
29 int get whatToShow() { return _get_whatToShow(this); }
30 static int _get_whatToShow(var _this) native;
31
32 void detach() {
33 _detach(this);
34 return;
35 }
36 static void _detach(receiver) native;
37
38 Node nextNode() {
39 return _nextNode(this);
40 }
41 static Node _nextNode(receiver) native;
42
43 Node previousNode() {
44 return _previousNode(this);
45 }
46 static Node _previousNode(receiver) native;
47
48 String get typeName() { return "NodeIterator"; }
49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698