Un-hiding Node.nodeType.

BUG=4754

Review URL: https://codereview.chromium.org//11365270

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@14923 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
blois@google.com 2012-11-14 22:31:33 +00:00
parent 7df8d41e84
commit e3fc690bbd
3 changed files with 2 additions and 3 deletions

View file

@ -13506,7 +13506,7 @@ class Node extends EventTarget native "*Node" {
Node get nextNode => JS("Node", "#.nextSibling", this);
/** @domName Node.nodeType */
int get $dom_nodeType => JS("int", "#.nodeType", this);
final int nodeType;
/** @domName Node.ownerDocument */
Document get document => JS("Document", "#.ownerDocument", this);

View file

@ -17596,7 +17596,7 @@ class Node extends EventTarget {
/** @domName Node.nodeType */
int get $dom_nodeType native "Node_nodeType_Getter";
int get nodeType native "Node_nodeType_Getter";
/** @domName Node.ownerDocument */

View file

@ -69,7 +69,6 @@ _private_html_members = set([
'Node.childNodes',
'Node.firstChild',
'Node.lastChild',
"Node.nodeType",
'Node.removeChild',
'Node.replaceChild',
'ShadowRoot.getElementById',