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

Unified Diff: client/dom/generated/src/frog/NodeList.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, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/dom/generated/src/frog/NodeIterator.dart ('k') | client/dom/generated/src/frog/NodeSelector.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/NodeList.dart
diff --git a/client/dom/generated/src/frog/NodeList.dart b/client/dom/generated/src/frog/NodeList.dart
index 1706b3673d26d0a60ef2c47995d6003d79bc4740..fd20963337a9004b9ed0fbdbf2c41c527b1027c7 100644
--- a/client/dom/generated/src/frog/NodeList.dart
+++ b/client/dom/generated/src/frog/NodeList.dart
@@ -1,11 +1,11 @@
-class NodeListJs extends DOMTypeJs implements NodeList native "*NodeList" {
+class _NodeListJs extends _DOMTypeJs implements NodeList native "*NodeList" {
int get length() native "return this.length;";
- NodeJs operator[](int index) native "return this[index];";
+ _NodeJs operator[](int index) native "return this[index];";
- void operator[]=(int index, NodeJs value) {
+ void operator[]=(int index, _NodeJs value) {
throw new UnsupportedOperationException("Cannot assign element of immutable List.");
}
// -- start List<Node> mixins.
@@ -76,5 +76,5 @@ class NodeListJs extends DOMTypeJs implements NodeList native "*NodeList" {
// -- end List<Node> mixins.
- NodeJs item(int index) native;
+ _NodeJs item(int index) native;
}
« no previous file with comments | « client/dom/generated/src/frog/NodeIterator.dart ('k') | client/dom/generated/src/frog/NodeSelector.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698