OLD | NEW |
1 library svg; | 1 library svg; |
2 | 2 |
3 import 'dart:async'; | 3 import 'dart:async'; |
4 import 'dart:collection'; | 4 import 'dart:collection'; |
5 import 'dart:html'; | 5 import 'dart:html'; |
6 import 'dart:html_common'; | 6 import 'dart:html_common'; |
7 import 'dart:nativewrappers'; | 7 import 'dart:nativewrappers'; |
8 // DO NOT EDIT | 8 // DO NOT EDIT |
9 // Auto-generated dart:svg library. | 9 // Auto-generated dart:svg library. |
10 | 10 |
(...skipping 3945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3956 return IterableMixinWorkaround.reduce(this, initialValue, combine); | 3956 return IterableMixinWorkaround.reduce(this, initialValue, combine); |
3957 } | 3957 } |
3958 | 3958 |
3959 bool contains(Length element) => IterableMixinWorkaround.contains(this, elemen
t); | 3959 bool contains(Length element) => IterableMixinWorkaround.contains(this, elemen
t); |
3960 | 3960 |
3961 void forEach(void f(Length element)) => IterableMixinWorkaround.forEach(this,
f); | 3961 void forEach(void f(Length element)) => IterableMixinWorkaround.forEach(this,
f); |
3962 | 3962 |
3963 String join([String separator]) => | 3963 String join([String separator]) => |
3964 IterableMixinWorkaround.joinList(this, separator); | 3964 IterableMixinWorkaround.joinList(this, separator); |
3965 | 3965 |
3966 Iterable map(f(Length element)) => | 3966 List mappedBy(f(Length element)) => IterableMixinWorkaround.mappedByList(this,
f); |
3967 IterableMixinWorkaround.map(this, f); | |
3968 | |
3969 List mappedBy(f(Length element)) => | |
3970 IterableMixinWorkaround.mappedBy(this, f); | |
3971 | 3967 |
3972 Iterable<Length> where(bool f(Length element)) => | 3968 Iterable<Length> where(bool f(Length element)) => |
3973 IterableMixinWorkaround.where(this, f); | 3969 IterableMixinWorkaround.where(this, f); |
3974 | 3970 |
3975 bool every(bool f(Length element)) => IterableMixinWorkaround.every(this, f); | 3971 bool every(bool f(Length element)) => IterableMixinWorkaround.every(this, f); |
3976 | 3972 |
3977 bool any(bool f(Length element)) => IterableMixinWorkaround.any(this, f); | 3973 bool any(bool f(Length element)) => IterableMixinWorkaround.any(this, f); |
3978 | 3974 |
3979 List<Length> toList() => new List<Length>.from(this); | 3975 List<Length> toList() => new List<Length>.from(this); |
3980 Set<Length> toSet() => new Set<Length>.from(this); | 3976 Set<Length> toSet() => new Set<Length>.from(this); |
3981 | 3977 |
3982 bool get isEmpty => this.length == 0; | 3978 bool get isEmpty => this.length == 0; |
3983 | 3979 |
3984 Iterable<Length> take(int n) => IterableMixinWorkaround.takeList(this, n); | 3980 List<Length> take(int n) => IterableMixinWorkaround.takeList(this, n); |
3985 | 3981 |
3986 Iterable<Length> takeWhile(bool test(Length value)) { | 3982 Iterable<Length> takeWhile(bool test(Length value)) { |
3987 return IterableMixinWorkaround.takeWhile(this, test); | 3983 return IterableMixinWorkaround.takeWhile(this, test); |
3988 } | 3984 } |
3989 | 3985 |
3990 Iterable<Length> skip(int n) => IterableMixinWorkaround.skipList(this, n); | 3986 List<Length> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
3991 | 3987 |
3992 Iterable<Length> skipWhile(bool test(Length value)) { | 3988 Iterable<Length> skipWhile(bool test(Length value)) { |
3993 return IterableMixinWorkaround.skipWhile(this, test); | 3989 return IterableMixinWorkaround.skipWhile(this, test); |
3994 } | 3990 } |
3995 | 3991 |
3996 Length firstMatching(bool test(Length value), { Length orElse() }) { | 3992 Length firstMatching(bool test(Length value), { Length orElse() }) { |
3997 return IterableMixinWorkaround.firstMatching(this, test, orElse); | 3993 return IterableMixinWorkaround.firstMatching(this, test, orElse); |
3998 } | 3994 } |
3999 | 3995 |
4000 Length lastMatching(bool test(Length value), {Length orElse()}) { | 3996 Length lastMatching(bool test(Length value), {Length orElse()}) { |
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4726 return IterableMixinWorkaround.reduce(this, initialValue, combine); | 4722 return IterableMixinWorkaround.reduce(this, initialValue, combine); |
4727 } | 4723 } |
4728 | 4724 |
4729 bool contains(Number element) => IterableMixinWorkaround.contains(this, elemen
t); | 4725 bool contains(Number element) => IterableMixinWorkaround.contains(this, elemen
t); |
4730 | 4726 |
4731 void forEach(void f(Number element)) => IterableMixinWorkaround.forEach(this,
f); | 4727 void forEach(void f(Number element)) => IterableMixinWorkaround.forEach(this,
f); |
4732 | 4728 |
4733 String join([String separator]) => | 4729 String join([String separator]) => |
4734 IterableMixinWorkaround.joinList(this, separator); | 4730 IterableMixinWorkaround.joinList(this, separator); |
4735 | 4731 |
4736 Iterable map(f(Number element)) => | 4732 List mappedBy(f(Number element)) => IterableMixinWorkaround.mappedByList(this,
f); |
4737 IterableMixinWorkaround.map(this, f); | |
4738 | |
4739 List mappedBy(f(Number element)) => | |
4740 IterableMixinWorkaround.mappedBy(this, f); | |
4741 | 4733 |
4742 Iterable<Number> where(bool f(Number element)) => | 4734 Iterable<Number> where(bool f(Number element)) => |
4743 IterableMixinWorkaround.where(this, f); | 4735 IterableMixinWorkaround.where(this, f); |
4744 | 4736 |
4745 bool every(bool f(Number element)) => IterableMixinWorkaround.every(this, f); | 4737 bool every(bool f(Number element)) => IterableMixinWorkaround.every(this, f); |
4746 | 4738 |
4747 bool any(bool f(Number element)) => IterableMixinWorkaround.any(this, f); | 4739 bool any(bool f(Number element)) => IterableMixinWorkaround.any(this, f); |
4748 | 4740 |
4749 List<Number> toList() => new List<Number>.from(this); | 4741 List<Number> toList() => new List<Number>.from(this); |
4750 Set<Number> toSet() => new Set<Number>.from(this); | 4742 Set<Number> toSet() => new Set<Number>.from(this); |
4751 | 4743 |
4752 bool get isEmpty => this.length == 0; | 4744 bool get isEmpty => this.length == 0; |
4753 | 4745 |
4754 Iterable<Number> take(int n) => IterableMixinWorkaround.takeList(this, n); | 4746 List<Number> take(int n) => IterableMixinWorkaround.takeList(this, n); |
4755 | 4747 |
4756 Iterable<Number> takeWhile(bool test(Number value)) { | 4748 Iterable<Number> takeWhile(bool test(Number value)) { |
4757 return IterableMixinWorkaround.takeWhile(this, test); | 4749 return IterableMixinWorkaround.takeWhile(this, test); |
4758 } | 4750 } |
4759 | 4751 |
4760 Iterable<Number> skip(int n) => IterableMixinWorkaround.skipList(this, n); | 4752 List<Number> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
4761 | 4753 |
4762 Iterable<Number> skipWhile(bool test(Number value)) { | 4754 Iterable<Number> skipWhile(bool test(Number value)) { |
4763 return IterableMixinWorkaround.skipWhile(this, test); | 4755 return IterableMixinWorkaround.skipWhile(this, test); |
4764 } | 4756 } |
4765 | 4757 |
4766 Number firstMatching(bool test(Number value), { Number orElse() }) { | 4758 Number firstMatching(bool test(Number value), { Number orElse() }) { |
4767 return IterableMixinWorkaround.firstMatching(this, test, orElse); | 4759 return IterableMixinWorkaround.firstMatching(this, test, orElse); |
4768 } | 4760 } |
4769 | 4761 |
4770 Number lastMatching(bool test(Number value), {Number orElse()}) { | 4762 Number lastMatching(bool test(Number value), {Number orElse()}) { |
(...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5914 return IterableMixinWorkaround.reduce(this, initialValue, combine); | 5906 return IterableMixinWorkaround.reduce(this, initialValue, combine); |
5915 } | 5907 } |
5916 | 5908 |
5917 bool contains(PathSeg element) => IterableMixinWorkaround.contains(this, eleme
nt); | 5909 bool contains(PathSeg element) => IterableMixinWorkaround.contains(this, eleme
nt); |
5918 | 5910 |
5919 void forEach(void f(PathSeg element)) => IterableMixinWorkaround.forEach(this,
f); | 5911 void forEach(void f(PathSeg element)) => IterableMixinWorkaround.forEach(this,
f); |
5920 | 5912 |
5921 String join([String separator]) => | 5913 String join([String separator]) => |
5922 IterableMixinWorkaround.joinList(this, separator); | 5914 IterableMixinWorkaround.joinList(this, separator); |
5923 | 5915 |
5924 Iterable map(f(PathSeg element)) => | 5916 List mappedBy(f(PathSeg element)) => IterableMixinWorkaround.mappedByList(this
, f); |
5925 IterableMixinWorkaround.map(this, f); | |
5926 | |
5927 List mappedBy(f(PathSeg element)) => | |
5928 IterableMixinWorkaround.mappedBy(this, f); | |
5929 | 5917 |
5930 Iterable<PathSeg> where(bool f(PathSeg element)) => | 5918 Iterable<PathSeg> where(bool f(PathSeg element)) => |
5931 IterableMixinWorkaround.where(this, f); | 5919 IterableMixinWorkaround.where(this, f); |
5932 | 5920 |
5933 bool every(bool f(PathSeg element)) => IterableMixinWorkaround.every(this, f); | 5921 bool every(bool f(PathSeg element)) => IterableMixinWorkaround.every(this, f); |
5934 | 5922 |
5935 bool any(bool f(PathSeg element)) => IterableMixinWorkaround.any(this, f); | 5923 bool any(bool f(PathSeg element)) => IterableMixinWorkaround.any(this, f); |
5936 | 5924 |
5937 List<PathSeg> toList() => new List<PathSeg>.from(this); | 5925 List<PathSeg> toList() => new List<PathSeg>.from(this); |
5938 Set<PathSeg> toSet() => new Set<PathSeg>.from(this); | 5926 Set<PathSeg> toSet() => new Set<PathSeg>.from(this); |
5939 | 5927 |
5940 bool get isEmpty => this.length == 0; | 5928 bool get isEmpty => this.length == 0; |
5941 | 5929 |
5942 Iterable<PathSeg> take(int n) => IterableMixinWorkaround.takeList(this, n); | 5930 List<PathSeg> take(int n) => IterableMixinWorkaround.takeList(this, n); |
5943 | 5931 |
5944 Iterable<PathSeg> takeWhile(bool test(PathSeg value)) { | 5932 Iterable<PathSeg> takeWhile(bool test(PathSeg value)) { |
5945 return IterableMixinWorkaround.takeWhile(this, test); | 5933 return IterableMixinWorkaround.takeWhile(this, test); |
5946 } | 5934 } |
5947 | 5935 |
5948 Iterable<PathSeg> skip(int n) => IterableMixinWorkaround.skipList(this, n); | 5936 List<PathSeg> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
5949 | 5937 |
5950 Iterable<PathSeg> skipWhile(bool test(PathSeg value)) { | 5938 Iterable<PathSeg> skipWhile(bool test(PathSeg value)) { |
5951 return IterableMixinWorkaround.skipWhile(this, test); | 5939 return IterableMixinWorkaround.skipWhile(this, test); |
5952 } | 5940 } |
5953 | 5941 |
5954 PathSeg firstMatching(bool test(PathSeg value), { PathSeg orElse() }) { | 5942 PathSeg firstMatching(bool test(PathSeg value), { PathSeg orElse() }) { |
5955 return IterableMixinWorkaround.firstMatching(this, test, orElse); | 5943 return IterableMixinWorkaround.firstMatching(this, test, orElse); |
5956 } | 5944 } |
5957 | 5945 |
5958 PathSeg lastMatching(bool test(PathSeg value), {PathSeg orElse()}) { | 5946 PathSeg lastMatching(bool test(PathSeg value), {PathSeg orElse()}) { |
(...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6942 return IterableMixinWorkaround.reduce(this, initialValue, combine); | 6930 return IterableMixinWorkaround.reduce(this, initialValue, combine); |
6943 } | 6931 } |
6944 | 6932 |
6945 bool contains(String element) => IterableMixinWorkaround.contains(this, elemen
t); | 6933 bool contains(String element) => IterableMixinWorkaround.contains(this, elemen
t); |
6946 | 6934 |
6947 void forEach(void f(String element)) => IterableMixinWorkaround.forEach(this,
f); | 6935 void forEach(void f(String element)) => IterableMixinWorkaround.forEach(this,
f); |
6948 | 6936 |
6949 String join([String separator]) => | 6937 String join([String separator]) => |
6950 IterableMixinWorkaround.joinList(this, separator); | 6938 IterableMixinWorkaround.joinList(this, separator); |
6951 | 6939 |
6952 Iterable map(f(String element)) => | 6940 List mappedBy(f(String element)) => IterableMixinWorkaround.mappedByList(this,
f); |
6953 IterableMixinWorkaround.map(this, f); | |
6954 | |
6955 List mappedBy(f(String element)) => | |
6956 IterableMixinWorkaround.mappedBy(this, f); | |
6957 | 6941 |
6958 Iterable<String> where(bool f(String element)) => | 6942 Iterable<String> where(bool f(String element)) => |
6959 IterableMixinWorkaround.where(this, f); | 6943 IterableMixinWorkaround.where(this, f); |
6960 | 6944 |
6961 bool every(bool f(String element)) => IterableMixinWorkaround.every(this, f); | 6945 bool every(bool f(String element)) => IterableMixinWorkaround.every(this, f); |
6962 | 6946 |
6963 bool any(bool f(String element)) => IterableMixinWorkaround.any(this, f); | 6947 bool any(bool f(String element)) => IterableMixinWorkaround.any(this, f); |
6964 | 6948 |
6965 List<String> toList() => new List<String>.from(this); | 6949 List<String> toList() => new List<String>.from(this); |
6966 Set<String> toSet() => new Set<String>.from(this); | 6950 Set<String> toSet() => new Set<String>.from(this); |
6967 | 6951 |
6968 bool get isEmpty => this.length == 0; | 6952 bool get isEmpty => this.length == 0; |
6969 | 6953 |
6970 Iterable<String> take(int n) => IterableMixinWorkaround.takeList(this, n); | 6954 List<String> take(int n) => IterableMixinWorkaround.takeList(this, n); |
6971 | 6955 |
6972 Iterable<String> takeWhile(bool test(String value)) { | 6956 Iterable<String> takeWhile(bool test(String value)) { |
6973 return IterableMixinWorkaround.takeWhile(this, test); | 6957 return IterableMixinWorkaround.takeWhile(this, test); |
6974 } | 6958 } |
6975 | 6959 |
6976 Iterable<String> skip(int n) => IterableMixinWorkaround.skipList(this, n); | 6960 List<String> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
6977 | 6961 |
6978 Iterable<String> skipWhile(bool test(String value)) { | 6962 Iterable<String> skipWhile(bool test(String value)) { |
6979 return IterableMixinWorkaround.skipWhile(this, test); | 6963 return IterableMixinWorkaround.skipWhile(this, test); |
6980 } | 6964 } |
6981 | 6965 |
6982 String firstMatching(bool test(String value), { String orElse() }) { | 6966 String firstMatching(bool test(String value), { String orElse() }) { |
6983 return IterableMixinWorkaround.firstMatching(this, test, orElse); | 6967 return IterableMixinWorkaround.firstMatching(this, test, orElse); |
6984 } | 6968 } |
6985 | 6969 |
6986 String lastMatching(bool test(String value), {String orElse()}) { | 6970 String lastMatching(bool test(String value), {String orElse()}) { |
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8265 return IterableMixinWorkaround.reduce(this, initialValue, combine); | 8249 return IterableMixinWorkaround.reduce(this, initialValue, combine); |
8266 } | 8250 } |
8267 | 8251 |
8268 bool contains(Transform element) => IterableMixinWorkaround.contains(this, ele
ment); | 8252 bool contains(Transform element) => IterableMixinWorkaround.contains(this, ele
ment); |
8269 | 8253 |
8270 void forEach(void f(Transform element)) => IterableMixinWorkaround.forEach(thi
s, f); | 8254 void forEach(void f(Transform element)) => IterableMixinWorkaround.forEach(thi
s, f); |
8271 | 8255 |
8272 String join([String separator]) => | 8256 String join([String separator]) => |
8273 IterableMixinWorkaround.joinList(this, separator); | 8257 IterableMixinWorkaround.joinList(this, separator); |
8274 | 8258 |
8275 Iterable map(f(Transform element)) => | 8259 List mappedBy(f(Transform element)) => IterableMixinWorkaround.mappedByList(th
is, f); |
8276 IterableMixinWorkaround.map(this, f); | |
8277 | |
8278 List mappedBy(f(Transform element)) => | |
8279 IterableMixinWorkaround.mappedBy(this, f); | |
8280 | 8260 |
8281 Iterable<Transform> where(bool f(Transform element)) => | 8261 Iterable<Transform> where(bool f(Transform element)) => |
8282 IterableMixinWorkaround.where(this, f); | 8262 IterableMixinWorkaround.where(this, f); |
8283 | 8263 |
8284 bool every(bool f(Transform element)) => IterableMixinWorkaround.every(this, f
); | 8264 bool every(bool f(Transform element)) => IterableMixinWorkaround.every(this, f
); |
8285 | 8265 |
8286 bool any(bool f(Transform element)) => IterableMixinWorkaround.any(this, f); | 8266 bool any(bool f(Transform element)) => IterableMixinWorkaround.any(this, f); |
8287 | 8267 |
8288 List<Transform> toList() => new List<Transform>.from(this); | 8268 List<Transform> toList() => new List<Transform>.from(this); |
8289 Set<Transform> toSet() => new Set<Transform>.from(this); | 8269 Set<Transform> toSet() => new Set<Transform>.from(this); |
8290 | 8270 |
8291 bool get isEmpty => this.length == 0; | 8271 bool get isEmpty => this.length == 0; |
8292 | 8272 |
8293 Iterable<Transform> take(int n) => IterableMixinWorkaround.takeList(this, n); | 8273 List<Transform> take(int n) => IterableMixinWorkaround.takeList(this, n); |
8294 | 8274 |
8295 Iterable<Transform> takeWhile(bool test(Transform value)) { | 8275 Iterable<Transform> takeWhile(bool test(Transform value)) { |
8296 return IterableMixinWorkaround.takeWhile(this, test); | 8276 return IterableMixinWorkaround.takeWhile(this, test); |
8297 } | 8277 } |
8298 | 8278 |
8299 Iterable<Transform> skip(int n) => IterableMixinWorkaround.skipList(this, n); | 8279 List<Transform> skip(int n) => IterableMixinWorkaround.skipList(this, n); |
8300 | 8280 |
8301 Iterable<Transform> skipWhile(bool test(Transform value)) { | 8281 Iterable<Transform> skipWhile(bool test(Transform value)) { |
8302 return IterableMixinWorkaround.skipWhile(this, test); | 8282 return IterableMixinWorkaround.skipWhile(this, test); |
8303 } | 8283 } |
8304 | 8284 |
8305 Transform firstMatching(bool test(Transform value), { Transform orElse() }) { | 8285 Transform firstMatching(bool test(Transform value), { Transform orElse() }) { |
8306 return IterableMixinWorkaround.firstMatching(this, test, orElse); | 8286 return IterableMixinWorkaround.firstMatching(this, test, orElse); |
8307 } | 8287 } |
8308 | 8288 |
8309 Transform lastMatching(bool test(Transform value), {Transform orElse()}) { | 8289 Transform lastMatching(bool test(Transform value), {Transform orElse()}) { |
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8862 return IterableMixinWorkaround.reduce(this, initialValue, combine); | 8842 return IterableMixinWorkaround.reduce(this, initialValue, combine); |
8863 } | 8843 } |
8864 | 8844 |
8865 bool contains(ElementInstance element) => IterableMixinWorkaround.contains(thi
s, element); | 8845 bool contains(ElementInstance element) => IterableMixinWorkaround.contains(thi
s, element); |
8866 | 8846 |
8867 void forEach(void f(ElementInstance element)) => IterableMixinWorkaround.forEa
ch(this, f); | 8847 void forEach(void f(ElementInstance element)) => IterableMixinWorkaround.forEa
ch(this, f); |
8868 | 8848 |
8869 String join([String separator]) => | 8849 String join([String separator]) => |
8870 IterableMixinWorkaround.joinList(this, separator); | 8850 IterableMixinWorkaround.joinList(this, separator); |
8871 | 8851 |
8872 Iterable map(f(ElementInstance element)) => | 8852 List mappedBy(f(ElementInstance element)) => IterableMixinWorkaround.mappedByL
ist(this, f); |
8873 IterableMixinWorkaround.map(this, f); | |
8874 | |
8875 List mappedBy(f(ElementInstance element)) => | |
8876 IterableMixinWorkaround.mappedBy(this, f); | |
8877 | 8853 |
8878 Iterable<ElementInstance> where(bool f(ElementInstance element)) => | 8854 Iterable<ElementInstance> where(bool f(ElementInstance element)) => |
8879 IterableMixinWorkaround.where(this, f); | 8855 IterableMixinWorkaround.where(this, f); |
8880 | 8856 |
8881 bool every(bool f(ElementInstance element)) => IterableMixinWorkaround.every(t
his, f); | 8857 bool every(bool f(ElementInstance element)) => IterableMixinWorkaround.every(t
his, f); |
8882 | 8858 |
8883 bool any(bool f(ElementInstance element)) => IterableMixinWorkaround.any(this,
f); | 8859 bool any(bool f(ElementInstance element)) => IterableMixinWorkaround.any(this,
f); |
8884 | 8860 |
8885 List<ElementInstance> toList() => new List<ElementInstance>.from(this); | 8861 List<ElementInstance> toList() => new List<ElementInstance>.from(this); |
8886 Set<ElementInstance> toSet() => new Set<ElementInstance>.from(this); | 8862 Set<ElementInstance> toSet() => new Set<ElementInstance>.from(this); |
8887 | 8863 |
8888 bool get isEmpty => this.length == 0; | 8864 bool get isEmpty => this.length == 0; |
8889 | 8865 |
8890 Iterable<ElementInstance> take(int n) => IterableMixinWorkaround.takeList(this
, n); | 8866 List<ElementInstance> take(int n) => IterableMixinWorkaround.takeList(this, n)
; |
8891 | 8867 |
8892 Iterable<ElementInstance> takeWhile(bool test(ElementInstance value)) { | 8868 Iterable<ElementInstance> takeWhile(bool test(ElementInstance value)) { |
8893 return IterableMixinWorkaround.takeWhile(this, test); | 8869 return IterableMixinWorkaround.takeWhile(this, test); |
8894 } | 8870 } |
8895 | 8871 |
8896 Iterable<ElementInstance> skip(int n) => IterableMixinWorkaround.skipList(this
, n); | 8872 List<ElementInstance> skip(int n) => IterableMixinWorkaround.skipList(this, n)
; |
8897 | 8873 |
8898 Iterable<ElementInstance> skipWhile(bool test(ElementInstance value)) { | 8874 Iterable<ElementInstance> skipWhile(bool test(ElementInstance value)) { |
8899 return IterableMixinWorkaround.skipWhile(this, test); | 8875 return IterableMixinWorkaround.skipWhile(this, test); |
8900 } | 8876 } |
8901 | 8877 |
8902 ElementInstance firstMatching(bool test(ElementInstance value), { ElementInsta
nce orElse() }) { | 8878 ElementInstance firstMatching(bool test(ElementInstance value), { ElementInsta
nce orElse() }) { |
8903 return IterableMixinWorkaround.firstMatching(this, test, orElse); | 8879 return IterableMixinWorkaround.firstMatching(this, test, orElse); |
8904 } | 8880 } |
8905 | 8881 |
8906 ElementInstance lastMatching(bool test(ElementInstance value), {ElementInstanc
e orElse()}) { | 8882 ElementInstance lastMatching(bool test(ElementInstance value), {ElementInstanc
e orElse()}) { |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9019 List<ElementInstance> getRange(int start, int rangeLength) => | 8995 List<ElementInstance> getRange(int start, int rangeLength) => |
9020 Lists.getRange(this, start, rangeLength, <ElementInstance>[]); | 8996 Lists.getRange(this, start, rangeLength, <ElementInstance>[]); |
9021 | 8997 |
9022 // -- end List<ElementInstance> mixins. | 8998 // -- end List<ElementInstance> mixins. |
9023 | 8999 |
9024 @DomName('SVGElementInstanceList.item') | 9000 @DomName('SVGElementInstanceList.item') |
9025 @DocsEditable | 9001 @DocsEditable |
9026 ElementInstance item(int index) native "SVGElementInstanceList_item_Callback"; | 9002 ElementInstance item(int index) native "SVGElementInstanceList_item_Callback"; |
9027 | 9003 |
9028 } | 9004 } |
OLD | NEW |