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

Side by Side Diff: client/dom/generated/src/frog/TreeWalker.dart

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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
1 1
2 class TreeWalkerJs extends DOMTypeJs implements TreeWalker native "*TreeWalker" { 2 class _TreeWalkerJs extends _DOMTypeJs implements TreeWalker native "*TreeWalker " {
3 3
4 NodeJs get currentNode() native "return this.currentNode;"; 4 _NodeJs get currentNode() native "return this.currentNode;";
5 5
6 void set currentNode(NodeJs value) native "this.currentNode = value;"; 6 void set currentNode(_NodeJs value) native "this.currentNode = value;";
7 7
8 bool get expandEntityReferences() native "return this.expandEntityReferences;" ; 8 bool get expandEntityReferences() native "return this.expandEntityReferences;" ;
9 9
10 NodeFilterJs get filter() native "return this.filter;"; 10 _NodeFilterJs get filter() native "return this.filter;";
11 11
12 NodeJs get root() native "return this.root;"; 12 _NodeJs get root() native "return this.root;";
13 13
14 int get whatToShow() native "return this.whatToShow;"; 14 int get whatToShow() native "return this.whatToShow;";
15 15
16 NodeJs firstChild() native; 16 _NodeJs firstChild() native;
17 17
18 NodeJs lastChild() native; 18 _NodeJs lastChild() native;
19 19
20 NodeJs nextNode() native; 20 _NodeJs nextNode() native;
21 21
22 NodeJs nextSibling() native; 22 _NodeJs nextSibling() native;
23 23
24 NodeJs parentNode() native; 24 _NodeJs parentNode() native;
25 25
26 NodeJs previousNode() native; 26 _NodeJs previousNode() native;
27 27
28 NodeJs previousSibling() native; 28 _NodeJs previousSibling() native;
29 } 29 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/TrackEvent.dart ('k') | client/dom/generated/src/frog/UIEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698