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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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 currentNode;
5 5
6 void set currentNode(_NodeJs value) native "this.currentNode = value;"; 6 final bool expandEntityReferences;
7 7
8 bool get expandEntityReferences() native "return this.expandEntityReferences;" ; 8 final _NodeFilterJs filter;
9 9
10 _NodeFilterJs get filter() native "return this.filter;"; 10 final _NodeJs root;
11 11
12 _NodeJs get root() native "return this.root;"; 12 final int whatToShow;
13
14 int get whatToShow() native "return this.whatToShow;";
15 13
16 _NodeJs firstChild() native; 14 _NodeJs firstChild() native;
17 15
18 _NodeJs lastChild() native; 16 _NodeJs lastChild() native;
19 17
20 _NodeJs nextNode() native; 18 _NodeJs nextNode() native;
21 19
22 _NodeJs nextSibling() native; 20 _NodeJs nextSibling() native;
23 21
24 _NodeJs parentNode() native; 22 _NodeJs parentNode() native;
25 23
26 _NodeJs previousNode() native; 24 _NodeJs previousNode() native;
27 25
28 _NodeJs previousSibling() native; 26 _NodeJs previousSibling() native;
29 } 27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698