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

Side by Side Diff: client/html/generated/src/wrapping/_StyleSheetListWrappingImplementation.dart

Issue 9207020: Add tests for Element#elements. (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class StyleSheetListWrappingImplementation extends DOMWrapperBase implements Sty leSheetList { 7 class StyleSheetListWrappingImplementation extends DOMWrapperBase implements Sty leSheetList {
8 StyleSheetListWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} 8 StyleSheetListWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9 9
10 int get length() { return _ptr.length; } 10 int get length() { return _ptr.length; }
(...skipping 20 matching lines...) Expand all
31 31
32 void sort(int compare(StyleSheet a, StyleSheet b)) { 32 void sort(int compare(StyleSheet a, StyleSheet b)) {
33 throw new UnsupportedOperationException("Cannot sort immutable List."); 33 throw new UnsupportedOperationException("Cannot sort immutable List.");
34 } 34 }
35 35
36 void copyFrom(List<Object> src, int srcStart, int dstStart, int count) { 36 void copyFrom(List<Object> src, int srcStart, int dstStart, int count) {
37 throw new UnsupportedOperationException("This object is immutable."); 37 throw new UnsupportedOperationException("This object is immutable.");
38 } 38 }
39 39
40 int indexOf(StyleSheet element, [int start = 0]) { 40 int indexOf(StyleSheet element, [int start = 0]) {
41 return _Lists.indexOf(this, element, start, this.length); 41 return Lists.indexOf(this, element, start, this.length);
42 } 42 }
43 43
44 int lastIndexOf(StyleSheet element, [int start = null]) { 44 int lastIndexOf(StyleSheet element, [int start = null]) {
45 if (start === null) start = length - 1; 45 if (start === null) start = length - 1;
46 return _Lists.lastIndexOf(this, element, start); 46 return Lists.lastIndexOf(this, element, start);
47 } 47 }
48 48
49 int clear() { 49 int clear() {
50 throw new UnsupportedOperationException("Cannot clear immutable List."); 50 throw new UnsupportedOperationException("Cannot clear immutable List.");
51 } 51 }
52 52
53 StyleSheet removeLast() { 53 StyleSheet removeLast() {
54 throw new UnsupportedOperationException("Cannot removeLast on immutable List ."); 54 throw new UnsupportedOperationException("Cannot removeLast on immutable List .");
55 } 55 }
56 56
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 } 99 }
100 100
101 Iterator<StyleSheet> iterator() { 101 Iterator<StyleSheet> iterator() {
102 return new _FixedSizeListIterator<StyleSheet>(this); 102 return new _FixedSizeListIterator<StyleSheet>(this);
103 } 103 }
104 104
105 StyleSheet item(int index) { 105 StyleSheet item(int index) {
106 return LevelDom.wrapStyleSheet(_ptr.item(index)); 106 return LevelDom.wrapStyleSheet(_ptr.item(index));
107 } 107 }
108 } 108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698