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

Side by Side Diff: tool/sdk_expected_errors.txt

Issue 1179643005: first step for #168, adds dart:js impl to the build (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « tool/input_sdk/lib/js/dart2js/js_dart2js.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 severe: line 90, column 1 of dart:js: [Message] File dart:html not found
2 import 'dart:html' show Blob, Event, ImageData, Node, Window;
3 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4 severe: line 92, column 1 of dart:js: [Message] File dart:indexed_db not found
5 import 'dart:indexed_db' show KeyRange;
6 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7 warning: line 426, column 16 of dart:math: [DownCastImplicit] rnd32.remainder(ma x) (num) will need runtime check to cast to type int
8 result = rnd32.remainder(max); // % max;
9 ^^^^^^^^^^^^^^^^^^^^
10 warning: line 37, column 25 of dart:math/point.dart: [DownCastComposite] x + oth er.x (num) will need runtime check to cast to type T
11 return new Point<T>(x + other.x, y + other.y);
12 ^^^^^^^^^^^
13 warning: line 37, column 38 of dart:math/point.dart: [DownCastComposite] y + oth er.y (num) will need runtime check to cast to type T
14 return new Point<T>(x + other.x, y + other.y);
15 ^^^^^^^^^^^
16 warning: line 46, column 25 of dart:math/point.dart: [DownCastComposite] x - oth er.x (num) will need runtime check to cast to type T
17 return new Point<T>(x - other.x, y - other.y);
18 ^^^^^^^^^^^
19 warning: line 46, column 38 of dart:math/point.dart: [DownCastComposite] y - oth er.y (num) will need runtime check to cast to type T
20 return new Point<T>(x - other.x, y - other.y);
21 ^^^^^^^^^^^
22 warning: line 59, column 25 of dart:math/point.dart: [DownCastComposite] x * fac tor (num) will need runtime check to cast to type T
23 return new Point<T>(x * factor, y * factor);
24 ^^^^^^^^^^
25 warning: line 59, column 37 of dart:math/point.dart: [DownCastComposite] y * fac tor (num) will need runtime check to cast to type T
26 return new Point<T>(x * factor, y * factor);
27 ^^^^^^^^^^
28 warning: line 86, column 12 of dart:math/point.dart: [DownCastComposite] dx * dx + dy * dy (num) will need runtime check to cast to type T
29 return dx * dx + dy * dy;
30 ^^^^^^^^^^^^^^^^^
31 warning: line 33, column 18 of dart:math/rectangle.dart: [DownCastComposite] lef t + width (num) will need runtime check to cast to type T
32 T get right => left + width;
33 ^^^^^^^^^^^^
34 warning: line 35, column 19 of dart:math/rectangle.dart: [DownCastComposite] top + height (num) will need runtime check to cast to type T
35 T get bottom => top + height;
36 ^^^^^^^^^^^^
37 warning: line 68, column 33 of dart:math/rectangle.dart: [DownCastComposite] x0 (num) will need runtime check to cast to type T
38 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0);
39 ^^
40 warning: line 68, column 37 of dart:math/rectangle.dart: [DownCastComposite] y0 (num) will need runtime check to cast to type T
41 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0);
42 ^^
43 warning: line 68, column 41 of dart:math/rectangle.dart: [DownCastComposite] x1 - x0 (num) will need runtime check to cast to type T
44 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0);
45 ^^^^^^^
46 warning: line 68, column 50 of dart:math/rectangle.dart: [DownCastComposite] y1 - y0 (num) will need runtime check to cast to type T
47 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0);
48 ^^^^^^^
49 warning: line 95, column 29 of dart:math/rectangle.dart: [DownCastComposite] lef t (num) will need runtime check to cast to type T
50 return new Rectangle<T>(left, top, right - left, bottom - top);
51 ^^^^
52 warning: line 95, column 35 of dart:math/rectangle.dart: [DownCastComposite] top (num) will need runtime check to cast to type T
53 return new Rectangle<T>(left, top, right - left, bottom - top);
54 ^^^
55 warning: line 95, column 40 of dart:math/rectangle.dart: [DownCastComposite] rig ht - left (num) will need runtime check to cast to type T
56 return new Rectangle<T>(left, top, right - left, bottom - top);
57 ^^^^^^^^^^^^
58 warning: line 95, column 54 of dart:math/rectangle.dart: [DownCastComposite] bot tom - top (num) will need runtime check to cast to type T
59 return new Rectangle<T>(left, top, right - left, bottom - top);
60 ^^^^^^^^^^^^
61 warning: line 119, column 41 of dart:math/rectangle.dart: [DownCastComposite] th is.left + this.width (num) will need runtime check to cast to type T
62 Point<T> get topRight => new Point<T>(this.left + this.width, this.top);
63 ^^^^^^^^^^^^^^^^^^^^^^
64 warning: line 120, column 44 of dart:math/rectangle.dart: [DownCastComposite] th is.left + this.width (num) will need runtime check to cast to type T
65 Point<T> get bottomRight => new Point<T>(this.left + this.width,
66 ^^^^^^^^^^^^^^^^^^^^^^
67 warning: line 121, column 7 of dart:math/rectangle.dart: [DownCastComposite] thi s.top + this.height (num) will need runtime check to cast to type T
68 this.top + this.height);
69 ^^^^^^^^^^^^^^^^^^^^^^
70 warning: line 123, column 7 of dart:math/rectangle.dart: [DownCastComposite] thi s.top + this.height (num) will need runtime check to cast to type T
71 this.top + this.height);
72 ^^^^^^^^^^^^^^^^^^^^^^
73 warning: line 151, column 22 of dart:math/rectangle.dart: [DownCastComposite] (w idth < 0) ? -width * 0 : width (dynamic) will need runtime check to cast to type T
74 : this.width = (width < 0) ? -width * 0 : width, // Inline _clampToZero.
75 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
76 warning: line 152, column 23 of dart:math/rectangle.dart: [DownCastComposite] (h eight < 0) ? -height * 0 : height (dynamic) will need runtime check to cast to t ype T
77 this.height = (height < 0) ? -height * 0 : height;
78 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
79 warning: line 167, column 14 of dart:math/rectangle.dart: [DownCastComposite] mi n(a.x, b.x) (num) will need runtime check to cast to type T
80 T left = min(a.x, b.x);
81 ^^^^^^^^^^^^^
82 warning: line 168, column 15 of dart:math/rectangle.dart: [DownCastComposite] ma x(a.x, b.x) - left (num) will need runtime check to cast to type T
83 T width = max(a.x, b.x) - left;
84 ^^^^^^^^^^^^^^^^^^^^
85 warning: line 169, column 13 of dart:math/rectangle.dart: [DownCastComposite] mi n(a.y, b.y) (num) will need runtime check to cast to type T
86 T top = min(a.y, b.y);
87 ^^^^^^^^^^^^^
88 warning: line 170, column 16 of dart:math/rectangle.dart: [DownCastComposite] ma x(a.y, b.y) - top (num) will need runtime check to cast to type T
89 T height = max(a.y, b.y) - top;
90 ^^^^^^^^^^^^^^^^^^^
91 warning: line 212, column 23 of dart:math/rectangle.dart: [DownCastComposite] (w idth < 0) ? _clampToZero(width) : width (dynamic) will need runtime check to cas t to type T
92 : this._width = (width < 0) ? _clampToZero(width) : width,
93 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
94 warning: line 213, column 24 of dart:math/rectangle.dart: [DownCastComposite] (h eight < 0) ? _clampToZero(height) : height (dynamic) will need runtime check to cast to type T
95 this._height = (height < 0) ? _clampToZero(height) : height;
96 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
97 warning: line 228, column 14 of dart:math/rectangle.dart: [DownCastComposite] mi n(a.x, b.x) (num) will need runtime check to cast to type T
98 T left = min(a.x, b.x);
99 ^^^^^^^^^^^^^
100 warning: line 229, column 15 of dart:math/rectangle.dart: [DownCastComposite] ma x(a.x, b.x) - left (num) will need runtime check to cast to type T
101 T width = max(a.x, b.x) - left;
102 ^^^^^^^^^^^^^^^^^^^^
103 warning: line 230, column 13 of dart:math/rectangle.dart: [DownCastComposite] mi n(a.y, b.y) (num) will need runtime check to cast to type T
104 T top = min(a.y, b.y);
105 ^^^^^^^^^^^^^
106 warning: line 231, column 16 of dart:math/rectangle.dart: [DownCastComposite] ma x(a.y, b.y) - top (num) will need runtime check to cast to type T
107 T height = max(a.y, b.y) - top;
108 ^^^^^^^^^^^^^^^^^^^
109 warning: line 247, column 28 of dart:math/rectangle.dart: [DownCastComposite] _c lampToZero(width) (num) will need runtime check to cast to type T
110 if (width < 0) width = _clampToZero(width);
111 ^^^^^^^^^^^^^^^^^^^
112 warning: line 263, column 30 of dart:math/rectangle.dart: [DownCastComposite] _c lampToZero(height) (num) will need runtime check to cast to type T
113 if (height < 0) height = _clampToZero(height);
114 ^^^^^^^^^^^^^^^^^^^^
1 warning: line 80, column 12 of dart:_interceptors/js_array.dart: [DownCastCompos ite] JS('var', r'#.pop()', this) (dynamic) will need runtime check to cast to ty pe E 115 warning: line 80, column 12 of dart:_interceptors/js_array.dart: [DownCastCompos ite] JS('var', r'#.pop()', this) (dynamic) will need runtime check to cast to ty pe E
2 return JS('var', r'#.pop()', this); 116 return JS('var', r'#.pop()', this);
3 ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 117 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
4 warning: line 125, column 9 of dart:_interceptors/js_array.dart: [DownCastCompos ite] JS('', '#[#]', this, i) (dynamic) will need runtime check to cast to type E 118 warning: line 125, column 9 of dart:_interceptors/js_array.dart: [DownCastCompos ite] JS('', '#[#]', this, i) (dynamic) will need runtime check to cast to type E
5 f(JS('', '#[#]', this, i)); 119 f(JS('', '#[#]', this, i));
6 ^^^^^^^^^^^^^^^^^^^^^^^ 120 ^^^^^^^^^^^^^^^^^^^^^^^
7 warning: line 161, column 12 of dart:_interceptors/js_array.dart: [DownCastCompo site] IterableMixinWorkaround.reduce(this, combine) (dynamic) will need runtime check to cast to type E 121 warning: line 161, column 12 of dart:_interceptors/js_array.dart: [DownCastCompo site] IterableMixinWorkaround.reduce(this, combine) (dynamic) will need runtime check to cast to type E
8 return IterableMixinWorkaround.reduce(this, combine); 122 return IterableMixinWorkaround.reduce(this, combine);
9 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 123 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10 warning: line 169, column 12 of dart:_interceptors/js_array.dart: [DownCastCompo site] IterableMixinWorkaround.firstWhere(this, test, orElse) (dynamic) will need runtime check to cast to type E 124 warning: line 169, column 12 of dart:_interceptors/js_array.dart: [DownCastCompo site] IterableMixinWorkaround.firstWhere(this, test, orElse) (dynamic) will need runtime check to cast to type E
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 243 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
130 warning: line 140, column 43 of dart:_js_helper/regexp_helper.dart: [DownCastCom posite] match (List<dynamic>) will need runtime check to cast to type List<Strin g> 244 warning: line 140, column 43 of dart:_js_helper/regexp_helper.dart: [DownCastCom posite] match (List<dynamic>) will need runtime check to cast to type List<Strin g>
131 return new _MatchImplementation(this, match); 245 return new _MatchImplementation(this, match);
132 ^^^^^ 246 ^^^^^
133 warning: line 152, column 43 of dart:_js_helper/regexp_helper.dart: [DownCastCom posite] match (List<dynamic>) will need runtime check to cast to type List<Strin g> 247 warning: line 152, column 43 of dart:_js_helper/regexp_helper.dart: [DownCastCom posite] match (List<dynamic>) will need runtime check to cast to type List<Strin g>
134 return new _MatchImplementation(this, match); 248 return new _MatchImplementation(this, match);
135 ^^^^^ 249 ^^^^^
136 warning: line 137, column 23 of dart:_js_helper/string_helper.dart: [DownCastCom posite] pattern.allMatches(receiver) (dynamic) will need runtime check to cast t o type Iterable<Match> 250 warning: line 137, column 23 of dart:_js_helper/string_helper.dart: [DownCastCom posite] pattern.allMatches(receiver) (dynamic) will need runtime check to cast t o type Iterable<Match>
137 for (Match match in pattern.allMatches(receiver)) { 251 for (Match match in pattern.allMatches(receiver)) {
138 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 252 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
139 warning: line 426, column 16 of dart:math: [DownCastImplicit] rnd32.remainder(ma x) (num) will need runtime check to cast to type int
140 result = rnd32.remainder(max); // % max;
141 ^^^^^^^^^^^^^^^^^^^^
142 warning: line 37, column 25 of dart:math/point.dart: [DownCastComposite] x + oth er.x (num) will need runtime check to cast to type T
143 return new Point<T>(x + other.x, y + other.y);
144 ^^^^^^^^^^^
145 warning: line 37, column 38 of dart:math/point.dart: [DownCastComposite] y + oth er.y (num) will need runtime check to cast to type T
146 return new Point<T>(x + other.x, y + other.y);
147 ^^^^^^^^^^^
148 warning: line 46, column 25 of dart:math/point.dart: [DownCastComposite] x - oth er.x (num) will need runtime check to cast to type T
149 return new Point<T>(x - other.x, y - other.y);
150 ^^^^^^^^^^^
151 warning: line 46, column 38 of dart:math/point.dart: [DownCastComposite] y - oth er.y (num) will need runtime check to cast to type T
152 return new Point<T>(x - other.x, y - other.y);
153 ^^^^^^^^^^^
154 warning: line 59, column 25 of dart:math/point.dart: [DownCastComposite] x * fac tor (num) will need runtime check to cast to type T
155 return new Point<T>(x * factor, y * factor);
156 ^^^^^^^^^^
157 warning: line 59, column 37 of dart:math/point.dart: [DownCastComposite] y * fac tor (num) will need runtime check to cast to type T
158 return new Point<T>(x * factor, y * factor);
159 ^^^^^^^^^^
160 warning: line 86, column 12 of dart:math/point.dart: [DownCastComposite] dx * dx + dy * dy (num) will need runtime check to cast to type T
161 return dx * dx + dy * dy;
162 ^^^^^^^^^^^^^^^^^
163 warning: line 33, column 18 of dart:math/rectangle.dart: [DownCastComposite] lef t + width (num) will need runtime check to cast to type T
164 T get right => left + width;
165 ^^^^^^^^^^^^
166 warning: line 35, column 19 of dart:math/rectangle.dart: [DownCastComposite] top + height (num) will need runtime check to cast to type T
167 T get bottom => top + height;
168 ^^^^^^^^^^^^
169 warning: line 68, column 33 of dart:math/rectangle.dart: [DownCastComposite] x0 (num) will need runtime check to cast to type T
170 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0);
171 ^^
172 warning: line 68, column 37 of dart:math/rectangle.dart: [DownCastComposite] y0 (num) will need runtime check to cast to type T
173 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0);
174 ^^
175 warning: line 68, column 41 of dart:math/rectangle.dart: [DownCastComposite] x1 - x0 (num) will need runtime check to cast to type T
176 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0);
177 ^^^^^^^
178 warning: line 68, column 50 of dart:math/rectangle.dart: [DownCastComposite] y1 - y0 (num) will need runtime check to cast to type T
179 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0);
180 ^^^^^^^
181 warning: line 95, column 29 of dart:math/rectangle.dart: [DownCastComposite] lef t (num) will need runtime check to cast to type T
182 return new Rectangle<T>(left, top, right - left, bottom - top);
183 ^^^^
184 warning: line 95, column 35 of dart:math/rectangle.dart: [DownCastComposite] top (num) will need runtime check to cast to type T
185 return new Rectangle<T>(left, top, right - left, bottom - top);
186 ^^^
187 warning: line 95, column 40 of dart:math/rectangle.dart: [DownCastComposite] rig ht - left (num) will need runtime check to cast to type T
188 return new Rectangle<T>(left, top, right - left, bottom - top);
189 ^^^^^^^^^^^^
190 warning: line 95, column 54 of dart:math/rectangle.dart: [DownCastComposite] bot tom - top (num) will need runtime check to cast to type T
191 return new Rectangle<T>(left, top, right - left, bottom - top);
192 ^^^^^^^^^^^^
193 warning: line 119, column 41 of dart:math/rectangle.dart: [DownCastComposite] th is.left + this.width (num) will need runtime check to cast to type T
194 Point<T> get topRight => new Point<T>(this.left + this.width, this.top);
195 ^^^^^^^^^^^^^^^^^^^^^^
196 warning: line 120, column 44 of dart:math/rectangle.dart: [DownCastComposite] th is.left + this.width (num) will need runtime check to cast to type T
197 Point<T> get bottomRight => new Point<T>(this.left + this.width,
198 ^^^^^^^^^^^^^^^^^^^^^^
199 warning: line 121, column 7 of dart:math/rectangle.dart: [DownCastComposite] thi s.top + this.height (num) will need runtime check to cast to type T
200 this.top + this.height);
201 ^^^^^^^^^^^^^^^^^^^^^^
202 warning: line 123, column 7 of dart:math/rectangle.dart: [DownCastComposite] thi s.top + this.height (num) will need runtime check to cast to type T
203 this.top + this.height);
204 ^^^^^^^^^^^^^^^^^^^^^^
205 warning: line 151, column 22 of dart:math/rectangle.dart: [DownCastComposite] (w idth < 0) ? -width * 0 : width (dynamic) will need runtime check to cast to type T
206 : this.width = (width < 0) ? -width * 0 : width, // Inline _clampToZero.
207 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
208 warning: line 152, column 23 of dart:math/rectangle.dart: [DownCastComposite] (h eight < 0) ? -height * 0 : height (dynamic) will need runtime check to cast to t ype T
209 this.height = (height < 0) ? -height * 0 : height;
210 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
211 warning: line 167, column 14 of dart:math/rectangle.dart: [DownCastComposite] mi n(a.x, b.x) (num) will need runtime check to cast to type T
212 T left = min(a.x, b.x);
213 ^^^^^^^^^^^^^
214 warning: line 168, column 15 of dart:math/rectangle.dart: [DownCastComposite] ma x(a.x, b.x) - left (num) will need runtime check to cast to type T
215 T width = max(a.x, b.x) - left;
216 ^^^^^^^^^^^^^^^^^^^^
217 warning: line 169, column 13 of dart:math/rectangle.dart: [DownCastComposite] mi n(a.y, b.y) (num) will need runtime check to cast to type T
218 T top = min(a.y, b.y);
219 ^^^^^^^^^^^^^
220 warning: line 170, column 16 of dart:math/rectangle.dart: [DownCastComposite] ma x(a.y, b.y) - top (num) will need runtime check to cast to type T
221 T height = max(a.y, b.y) - top;
222 ^^^^^^^^^^^^^^^^^^^
223 warning: line 212, column 23 of dart:math/rectangle.dart: [DownCastComposite] (w idth < 0) ? _clampToZero(width) : width (dynamic) will need runtime check to cas t to type T
224 : this._width = (width < 0) ? _clampToZero(width) : width,
225 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
226 warning: line 213, column 24 of dart:math/rectangle.dart: [DownCastComposite] (h eight < 0) ? _clampToZero(height) : height (dynamic) will need runtime check to cast to type T
227 this._height = (height < 0) ? _clampToZero(height) : height;
228 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
229 warning: line 228, column 14 of dart:math/rectangle.dart: [DownCastComposite] mi n(a.x, b.x) (num) will need runtime check to cast to type T
230 T left = min(a.x, b.x);
231 ^^^^^^^^^^^^^
232 warning: line 229, column 15 of dart:math/rectangle.dart: [DownCastComposite] ma x(a.x, b.x) - left (num) will need runtime check to cast to type T
233 T width = max(a.x, b.x) - left;
234 ^^^^^^^^^^^^^^^^^^^^
235 warning: line 230, column 13 of dart:math/rectangle.dart: [DownCastComposite] mi n(a.y, b.y) (num) will need runtime check to cast to type T
236 T top = min(a.y, b.y);
237 ^^^^^^^^^^^^^
238 warning: line 231, column 16 of dart:math/rectangle.dart: [DownCastComposite] ma x(a.y, b.y) - top (num) will need runtime check to cast to type T
239 T height = max(a.y, b.y) - top;
240 ^^^^^^^^^^^^^^^^^^^
241 warning: line 247, column 28 of dart:math/rectangle.dart: [DownCastComposite] _c lampToZero(width) (num) will need runtime check to cast to type T
242 if (width < 0) width = _clampToZero(width);
243 ^^^^^^^^^^^^^^^^^^^
244 warning: line 263, column 30 of dart:math/rectangle.dart: [DownCastComposite] _c lampToZero(height) (num) will need runtime check to cast to type T
245 if (height < 0) height = _clampToZero(height);
246 ^^^^^^^^^^^^^^^^^^^^
247 warning: line 310, column 12 of dart:_internal/iterable.dart: [DownCastComposite ] result (List<dynamic>) will need runtime check to cast to type List<E>
248 return result;
249 ^^^^^^
250 warning: line 357, column 39 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< S>
251 return new MappedIterable<S, T>._(iterable, function);
252 ^^^^^^^^
253 warning: line 378, column 17 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< S>
254 : super._(iterable, function);
255 ^^^^^^^^
256 warning: line 454, column 76 of dart:_internal/iterable.dart: [DownCastComposite ] _f ((dynamic) → Iterable<dynamic>) will need runtime check to cast to type (S) → Iterable<T>
257 Iterator<T> get iterator => new ExpandIterator<S, T>(_iterable.iterator, _f);
258 ^^
259 warning: line 481, column 29 of dart:_internal/iterable.dart: [DownCastComposite ] _f(_iterator.current).iterator (Iterator<dynamic>) will need runtime check to cast to type Iterator<T>
260 _currentExpansion = _f(_iterator.current).iterator;
261 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
262 warning: line 961, column 33 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< T>
263 return new WhereIterable<T>(iterable, f);
264 ^^^^^^^^
265 warning: line 961, column 43 of dart:_internal/iterable.dart: [DownCastComposite ] f ((dynamic) → bool) will need runtime check to cast to type (T) → bool
266 return new WhereIterable<T>(iterable, f);
267 ^
268 warning: line 978, column 35 of dart:_internal/iterable.dart: [DownCastComposite ] list (List<dynamic>) will need runtime check to cast to type Iterable<T>
269 return new SubListIterable<T>(list, 0, n);
270 ^^^^
271 warning: line 983, column 37 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< T>
272 return new TakeWhileIterable<T>(iterable, test);
273 ^^^^^^^^
274 warning: line 983, column 47 of dart:_internal/iterable.dart: [DownCastComposite ] test ((dynamic) → bool) will need runtime check to cast to type (T) → bool
275 return new TakeWhileIterable<T>(iterable, test);
276 ^^^^
277 warning: line 988, column 35 of dart:_internal/iterable.dart: [DownCastComposite ] list (List<dynamic>) will need runtime check to cast to type Iterable<T>
278 return new SubListIterable<T>(list, n, null);
279 ^^^^
280 warning: line 993, column 37 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< T>
281 return new SkipWhileIterable<T>(iterable, test);
282 ^^^^^^^^
283 warning: line 993, column 47 of dart:_internal/iterable.dart: [DownCastComposite ] test ((dynamic) → bool) will need runtime check to cast to type (T) → bool
284 return new SkipWhileIterable<T>(iterable, test);
285 ^^^^
286 warning: line 997, column 40 of dart:_internal/iterable.dart: [DownCastComposite ] list (List<dynamic>) will need runtime check to cast to type Iterable<T>
287 return new ReversedListIterable<T>(list);
288 ^^^^
289 warning: line 1033, column 35 of dart:_internal/iterable.dart: [DownCastComposit e] list (List<dynamic>) will need runtime check to cast to type Iterable<T>
290 return new SubListIterable<T>(list, start, end);
291 ^^^^
292 warning: line 1115, column 31 of dart:_internal/iterable.dart: [DownCastComposit e] l (List<dynamic>) will need runtime check to cast to type List<T>
293 return new ListMapView<T>(l);
294 ^
295 warning: line 251, column 59 of dart:_internal/list.dart: [DownCastImplicit] key (Object) will need runtime check to cast to type int
296 E operator[] (Object key) => containsKey(key) ? _values[key] : null;
297 ^^^
298 warning: line 179, column 12 of dart:collection: [DownCastComposite] JS('var', ' #.splice(#, 2)[1]', bucket, index) (dynamic) will need runtime check to cast to type V
299 return JS('var', '#.splice(#, 2)[1]', bucket, index);
300 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
301 warning: line 193, column 14 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
302 action(key, this[key]);
303 ^^^
304 warning: line 261, column 17 of dart:collection: [DownCastComposite] _getTableEn try(table, key) (dynamic) will need runtime check to cast to type V
305 V value = _getTableEntry(table, key);
306 ^^^^^^^^^^^^^^^^^^^^^^^^^^
307 severe: line 372, column 61 of dart:collection: [InvalidRuntimeCheckError] Inval id runtime check on non-ground type K
308 : _validKey = (validKey != null) ? validKey : ((v) => v is K);
309 ^^^^^^
310 warning: line 397, column 49 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
311 return JS('int', '# & 0x3ffffff', _hashCode(key));
312 ^^^
313 warning: line 404, column 19 of dart:collection: [DownCastComposite] JS('var', ' #[#]', bucket, i) (dynamic) will need runtime check to cast to type K
314 if (_equals(JS('var', '#[#]', bucket, i), key)) return i;
315 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
316 warning: line 404, column 49 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
317 if (_equals(JS('var', '#[#]', bucket, i), key)) return i;
318 ^^^
319 warning: line 430, column 9 of dart:collection: [DownCastComposite] JS('var', '# [#]', keys, i) (dynamic) will need runtime check to cast to type E
320 f(JS('var', '#[#]', keys, i));
321 ^^^^^^^^^^^^^^^^^^^^^^^^^^
322 warning: line 456, column 18 of dart:collection: [DownCastComposite] JS('var', ' #[#]', keys, offset) (dynamic) will need runtime check to cast to type E
323 _current = JS('var', '#[#]', keys, offset);
324 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
325 warning: line 561, column 12 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
326 return cell._value;
327 ^^^^^^^^^^^
328 warning: line 627, column 12 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
329 return cell._value;
330 ^^^^^^^^^^^
331 warning: line 642, column 14 of dart:collection: [DownCastComposite] cell._key ( dynamic) will need runtime check to cast to type K
332 action(cell._key, cell._value);
333 ^^^^^^^^^
334 warning: line 642, column 25 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
335 action(cell._key, cell._value);
336 ^^^^^^^^^^^
337 warning: line 665, column 12 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
338 return cell._value;
339 ^^^^^^^^^^^
340 severe: line 795, column 61 of dart:collection: [InvalidRuntimeCheckError] Inval id runtime check on non-ground type K
341 : _validKey = (validKey != null) ? validKey : ((v) => v is K);
342 ^^^^^^
343 warning: line 820, column 49 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
344 return JS('int', '# & 0x3ffffff', _hashCode(key));
345 ^^^
346 warning: line 828, column 19 of dart:collection: [DownCastComposite] cell._key ( dynamic) will need runtime check to cast to type K
347 if (_equals(cell._key, key)) return i;
348 ^^^^^^^^^
349 warning: line 828, column 30 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
350 if (_equals(cell._key, key)) return i;
351 ^^^
352 warning: line 862, column 9 of dart:collection: [DownCastComposite] cell._key (d ynamic) will need runtime check to cast to type E
353 f(cell._key);
354 ^^^^^^^^^
355 warning: line 889, column 18 of dart:collection: [DownCastComposite] _cell._key (dynamic) will need runtime check to cast to type E
356 _current = _cell._key;
357 ^^^^^^^^^^
358 warning: line 951, column 14 of dart:collection: [DownCastComposite] this.contai ns(object) ? object : null (Object) will need runtime check to cast to type E
359 return this.contains(object) ? object : null;
360 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
361 warning: line 962, column 12 of dart:collection: [DownCastComposite] bucket[inde x] (dynamic) will need runtime check to cast to type E
362 return bucket[index];
363 ^^^^^^^^^^^^^
364 severe: line 1194, column 61 of dart:collection: [InvalidRuntimeCheckError] Inva lid runtime check on non-ground type E
365 : _validKey = (validKey != null) ? validKey : ((x) => x is E);
366 ^^^^^^
367 warning: line 1202, column 21 of dart:collection: [DownCastComposite] JS('var', '#[#]', bucket, i) (dynamic) will need runtime check to cast to type E
368 if (_equality(JS('var', '#[#]', bucket, i), element)) return i;
369 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
370 warning: line 1202, column 51 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
371 if (_equality(JS('var', '#[#]', bucket, i), element)) return i;
372 ^^^^^^^
373 warning: line 1212, column 47 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
374 return JS('int', '# & 0x3ffffff', _hasher(element));
375 ^^^^^^^
376 warning: line 1251, column 18 of dart:collection: [DownCastComposite] JS('var', '#[#]', elements, offset) (dynamic) will need runtime check to cast to type E
377 _current = JS('var', '#[#]', elements, offset);
378 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
379 warning: line 1328, column 14 of dart:collection: [DownCastComposite] this.conta ins(object) ? object : null (Object) will need runtime check to cast to type E
380 return this.contains(object) ? object : null;
381 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
382 warning: line 1340, column 12 of dart:collection: [DownCastComposite] bucket[ind ex]._element (dynamic) will need runtime check to cast to type E
383 return bucket[index]._element;
384 ^^^^^^^^^^^^^^^^^^^^^^
385 warning: line 1347, column 14 of dart:collection: [DownCastComposite] cell._elem ent (dynamic) will need runtime check to cast to type E
386 action(cell._element);
387 ^^^^^^^^^^^^^
388 warning: line 1357, column 12 of dart:collection: [DownCastComposite] _first._el ement (dynamic) will need runtime check to cast to type E
389 return _first._element;
390 ^^^^^^^^^^^^^^^
391 warning: line 1362, column 12 of dart:collection: [DownCastComposite] _last._ele ment (dynamic) will need runtime check to cast to type E
392 return _last._element;
393 ^^^^^^^^^^^^^^
394 warning: line 1431, column 19 of dart:collection: [DownCastComposite] cell._elem ent (dynamic) will need runtime check to cast to type E
395 E element = cell._element;
396 ^^^^^^^^^^^^^
397 severe: line 1596, column 61 of dart:collection: [InvalidRuntimeCheckError] Inva lid runtime check on non-ground type E
398 : _validKey = (validKey != null) ? validKey : ((x) => x is E);
399 ^^^^^^
400 warning: line 1606, column 21 of dart:collection: [DownCastComposite] cell._elem ent (dynamic) will need runtime check to cast to type E
401 if (_equality(cell._element, element)) return i;
402 ^^^^^^^^^^^^^
403 warning: line 1606, column 36 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
404 if (_equality(cell._element, element)) return i;
405 ^^^^^^^
406 warning: line 1616, column 47 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
407 return JS('int', '# & 0x3ffffff', _hasher(element));
408 ^^^^^^^
409 warning: line 1678, column 18 of dart:collection: [DownCastComposite] _cell._ele ment (dynamic) will need runtime check to cast to type E
410 _current = _cell._element;
411 ^^^^^^^^^^^^^^
412 warning: line 112, column 40 of dart:collection/hash_map.dart: [DownCastComposit e] v (dynamic) will need runtime check to cast to type V
413 other.forEach((k, v) { result[k] = v; });
414 ^
415 warning: line 112, column 35 of dart:collection/hash_map.dart: [DownCastComposit e] k (dynamic) will need runtime check to cast to type K
416 other.forEach((k, v) { result[k] = v; });
417 ^
418 warning: line 128, column 17 of dart:collection/hash_set.dart: [DownCastComposit e] elements (Iterable<dynamic>) will need runtime check to cast to type Iterable <E>
419 for (E e in elements) result.add(e);
420 ^^^^^^^^
421 warning: line 33, column 16 of dart:collection/iterator.dart: [DownCastComposite ] _iterator.current (dynamic) will need runtime check to cast to type E
422 E result = _iterator.current;
423 ^^^^^^^^^^^^^^^^^
424 warning: line 99, column 40 of dart:collection/linked_hash_map.dart: [DownCastCo mposite] v (dynamic) will need runtime check to cast to type V
425 other.forEach((k, v) { result[k] = v; });
426 ^
427 warning: line 99, column 35 of dart:collection/linked_hash_map.dart: [DownCastCo mposite] k (dynamic) will need runtime check to cast to type K
428 other.forEach((k, v) { result[k] = v; });
429 ^
430 warning: line 142, column 12 of dart:collection/linked_hash_map.dart: [DownCastC omposite] fillLiteralMap(keyValuePairs, new _LinkedHashMap<K, V>()) (dynamic) wi ll need runtime check to cast to type LinkedHashMap<K, V>
431 return fillLiteralMap(keyValuePairs, new _LinkedHashMap<K, V>());
432 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
433 warning: line 65, column 56 of dart:collection/linked_list.dart: [DownCastCompos ite] entry (dynamic) will need runtime check to cast to type E
434 entries.forEach((entry) => _insertAfter(_previous, entry));
435 ^^^^^
436 warning: line 93, column 17 of dart:collection/linked_list.dart: [DownCastCompos ite] next (_LinkedListLink) will need runtime check to cast to type E
437 E entry = next;
438 ^^^^
439 warning: line 105, column 12 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
440 return _next;
441 ^^^^^
442 warning: line 112, column 12 of dart:collection/linked_list.dart: [DownCastCompo site] _previous (_LinkedListLink) will need runtime check to cast to type E
443 return _previous;
444 ^^^^^^^^^
445 warning: line 122, column 12 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
446 return _next;
447 ^^^^^
448 warning: line 134, column 14 of dart:collection/linked_list.dart: [DownCastCompo site] current (_LinkedListLink) will need runtime check to cast to type E
449 action(current);
450 ^^^^^^^
451 warning: line 192, column 16 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
452 _current = _next;
453 ^^^^^
454 warning: line 249, column 16 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
455 E result = _next;
456 ^^^^^
457 warning: line 365, column 19 of dart:collection/list.dart: [DownCastImplicit] it erable (Iterable<E>) will need runtime check to cast to type List<dynamic>
458 otherList = iterable;
459 ^^^^^^^^
460 warning: line 377, column 27 of dart:collection/list.dart: [DownCastComposite] o therList[otherStart + i] (dynamic) will need runtime check to cast to type E
461 this[start + i] = otherList[otherStart + i];
462 ^^^^^^^^^^^^^^^^^^^^^^^^^
463 warning: line 381, column 27 of dart:collection/list.dart: [DownCastComposite] o therList[otherStart + i] (dynamic) will need runtime check to cast to type E
464 this[start + i] = otherList[otherStart + i];
465 ^^^^^^^^^^^^^^^^^^^^^^^^^
466 warning: line 122, column 18 of dart:collection/maps.dart: [DownCastComposite] _ map[_map.keys.first] (dynamic) will need runtime check to cast to type V
467 V get first => _map[_map.keys.first];
468 ^^^^^^^^^^^^^^^^^^^^^
469 warning: line 123, column 19 of dart:collection/maps.dart: [DownCastComposite] _ map[_map.keys.single] (dynamic) will need runtime check to cast to type V
470 V get single => _map[_map.keys.single];
471 ^^^^^^^^^^^^^^^^^^^^^^
472 warning: line 124, column 17 of dart:collection/maps.dart: [DownCastComposite] _ map[_map.keys.last] (dynamic) will need runtime check to cast to type V
473 V get last => _map[_map.keys.last];
474 ^^^^^^^^^^^^^^^^^^^^
475 warning: line 144, column 18 of dart:collection/maps.dart: [DownCastComposite] _ map[_keys.current] (dynamic) will need runtime check to cast to type V
476 _current = _map[_keys.current];
477 ^^^^^^^^^^^^^^^^^^^
478 warning: line 208, column 23 of dart:collection/queue.dart: [DownCastComposite] elements (Iterable<dynamic>) will need runtime check to cast to type Iterable<E>
479 for (final E e in elements) {
480 ^^^^^^^^
481 warning: line 211, column 12 of dart:collection/queue.dart: [DownCastComposite] list (Queue<E>) will need runtime check to cast to type DoubleLinkedQueue<E>
482 return list;
483 ^^^^
484 warning: line 402, column 40 of dart:collection/queue.dart: [DownCastComposite] sourceList (List<dynamic>) will need runtime check to cast to type Iterable<E>
485 queue._table.setRange(0, length, sourceList, 0);
486 ^^^^^^^^^^
487 warning: line 411, column 31 of dart:collection/queue.dart: [DownCastComposite] elements (Iterable<dynamic>) will need runtime check to cast to type Iterable<E>
488 for (final E element in elements) {
489 ^^^^^^^^
490 warning: line 480, column 52 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
491 _table.setRange(length, length + addCount, list, 0);
492 ^^^^
493 warning: line 486, column 52 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
494 _table.setRange(_tail, _tail + addCount, list, 0);
495 ^^^^
496 warning: line 490, column 52 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
497 _table.setRange(_tail, _tail + endSpace, list, 0);
498 ^^^^
499 warning: line 491, column 40 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
500 _table.setRange(0, preSpace, list, endSpace);
501 ^^^^
502 warning: line 738, column 16 of dart:collection/queue.dart: [DownCastComposite] _queue._table[_position] (dynamic) will need runtime check to cast to type E
503 _current = _queue._table[_position];
504 ^^^^^^^^^^^^^^^^^^^^^^^^
505 severe: line 610, column 60 of dart:collection/splay_tree.dart: [AnalyzerError] The getter '_validKey' is not defined for the class '_SplayTree<K>'
506 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
507 ^^^^^^^^^
508 severe: line 610, column 38 of dart:collection/splay_tree.dart: [AnalyzerError] The getter '_comparator' is not defined for the class '_SplayTree<K>'
509 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
510 ^^^^^^^^^^^
511 warning: line 151, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] current (_SplayTreeNode<dynamic>) will need runtime check to cast to type _ SplayTreeNode<K>
512 return current;
513 ^^^^^^^
514 warning: line 167, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] current (_SplayTreeNode<dynamic>) will need runtime check to cast to type _ SplayTreeNode<K>
515 return current;
516 ^^^^^^^
517 warning: line 265, column 23 of dart:collection/splay_tree.dart: [DownCastCompos ite] (compare == null) ? Comparable.compare : compare (dynamic) will need runtim e check to cast to type (K, K) → int
518 : _comparator = (compare == null) ? Comparable.compare : compare,
519 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
520 severe: line 266, column 65 of dart:collection/splay_tree.dart: [InvalidRuntimeC heckError] Invalid runtime check on non-ground type K
521 _validKey = (isValidKey != null) ? isValidKey : ((v) => v is K);
522 ^^^^^^
523 warning: line 275, column 40 of dart:collection/splay_tree.dart: [DownCastCompos ite] v (dynamic) will need runtime check to cast to type V
524 other.forEach((k, v) { result[k] = v; });
525 ^
526 warning: line 275, column 35 of dart:collection/splay_tree.dart: [DownCastCompos ite] k (dynamic) will need runtime check to cast to type K
527 other.forEach((k, v) { result[k] = v; });
528 ^
529 warning: line 328, column 25 of dart:collection/splay_tree.dart: [DownCastCompos ite] key (Object) will need runtime check to cast to type K
530 int comp = _splay(key);
531 ^^^
532 warning: line 331, column 16 of dart:collection/splay_tree.dart: [DownCastCompos ite] mapRoot.value (dynamic) will need runtime check to cast to type V
533 return mapRoot.value;
534 ^^^^^^^^^^^^^
535 warning: line 339, column 41 of dart:collection/splay_tree.dart: [DownCastCompos ite] key (Object) will need runtime check to cast to type K
536 _SplayTreeMapNode mapRoot = _remove(key);
537 ^^^
538 warning: line 340, column 33 of dart:collection/splay_tree.dart: [DownCastCompos ite] mapRoot.value (dynamic) will need runtime check to cast to type V
539 if (mapRoot != null) return mapRoot.value;
540 ^^^^^^^^^^^^^
541 warning: line 363, column 14 of dart:collection/splay_tree.dart: [DownCastCompos ite] mapRoot.value (dynamic) will need runtime check to cast to type V
542 return mapRoot.value;
543 ^^^^^^^^^^^^^
544 warning: line 394, column 38 of dart:collection/splay_tree.dart: [DownCastCompos ite] nodes.current (_SplayTreeNode<K>) will need runtime check to cast to type _ SplayTreeMapNode<K, V>
545 _SplayTreeMapNode<K, V> node = nodes.current;
546 ^^^^^^^^^^^^^
547 warning: line 408, column 37 of dart:collection/splay_tree.dart: [DownCastCompos ite] key (Object) will need runtime check to cast to type K
548 return _validKey(key) && _splay(key) == 0;
549 ^^^
550 warning: line 420, column 41 of dart:collection/splay_tree.dart: [DownCastImplic it] node.right (_SplayTreeNode<dynamic>) will need runtime check to cast to type _SplayTreeMapNode<dynamic, dynamic>
551 if (node.right != null && visit(node.right)) return true;
552 ^^^^^^^^^^
553 warning: line 421, column 16 of dart:collection/splay_tree.dart: [DownCastImplic it] node.left (_SplayTreeNode<dynamic>) will need runtime check to cast to type _SplayTreeMapNode<dynamic, dynamic>
554 node = node.left;
555 ^^^^^^^^^
556 warning: line 425, column 18 of dart:collection/splay_tree.dart: [DownCastImplic it] _root (_SplayTreeNode<K>) will need runtime check to cast to type _SplayTree MapNode<dynamic, dynamic>
557 return visit(_root);
558 ^^^^^
559 warning: line 441, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] _first.key (dynamic) will need runtime check to cast to type K
560 return _first.key;
561 ^^^^^^^^^^
562 warning: line 449, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] _last.key (dynamic) will need runtime check to cast to type K
563 return _last.key;
564 ^^^^^^^^^
565 warning: line 545, column 22 of dart:collection/splay_tree.dart: [DownCastImplic it] _currentNode (_SplayTreeNode<dynamic>) will need runtime check to cast to ty pe _SplayTreeMapNode<dynamic, dynamic>
566 return _getValue(_currentNode);
567 ^^^^^^^^^^^^
568 warning: line 610, column 29 of dart:collection/splay_tree.dart: [DownCastCompos ite] setOrMap._comparator (dynamic) will need runtime check to cast to type (K, K) → int
569 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
570 ^^^^^^^^^^^^^^^^^^^^
571 warning: line 610, column 51 of dart:collection/splay_tree.dart: [DownCastCompos ite] setOrMap._validKey (dynamic) will need runtime check to cast to type (Objec t) → bool
572 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
573 ^^^^^^^^^^^^^^^^^^
574 warning: line 628, column 39 of dart:collection/splay_tree.dart: [DownCastCompos ite] node.key (dynamic) will need runtime check to cast to type K
575 K _getValue(_SplayTreeNode node) => node.key;
576 ^^^^^^^^
577 warning: line 633, column 42 of dart:collection/splay_tree.dart: [DownCastCompos ite] node.value (dynamic) will need runtime check to cast to type V
578 V _getValue(_SplayTreeMapNode node) => node.value;
579 ^^^^^^^^^^
580 warning: line 641, column 55 of dart:collection/splay_tree.dart: [DownCastCompos ite] node (_SplayTreeNode<dynamic>) will need runtime check to cast to type _Spl ayTreeNode<K>
581 _SplayTreeNode<K> _getValue(_SplayTreeNode node) => node;
582 ^^^^
583 warning: line 691, column 23 of dart:collection/splay_tree.dart: [DownCastCompos ite] (compare == null) ? Comparable.compare : compare (dynamic) will need runtim e check to cast to type (E, E) → int
584 : _comparator = (compare == null) ? Comparable.compare : compare,
585 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
586 severe: line 692, column 65 of dart:collection/splay_tree.dart: [InvalidRuntimeC heckError] Invalid runtime check on non-ground type E
587 _validKey = (isValidKey != null) ? isValidKey : ((v) => v is E);
588 ^^^^^^
589 warning: line 705, column 29 of dart:collection/splay_tree.dart: [DownCastCompos ite] elements (Iterable<dynamic>) will need runtime check to cast to type Iterab le<E>
590 for (final E element in elements) {
591 ^^^^^^^^
592 warning: line 723, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] _first.key (dynamic) will need runtime check to cast to type E
593 return _first.key;
594 ^^^^^^^^^^
595 warning: line 728, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] _last.key (dynamic) will need runtime check to cast to type E
596 return _last.key;
597 ^^^^^^^^^
598 warning: line 739, column 40 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
599 return _validKey(object) && _splay(object) == 0;
600 ^^^^^^
601 warning: line 751, column 20 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
602 return _remove(object) != null;
603 ^^^^^^
604 warning: line 765, column 39 of dart:collection/splay_tree.dart: [DownCastCompos ite] element (Object) will need runtime check to cast to type E
605 if (_validKey(element)) _remove(element);
606 ^^^^^^^
607 warning: line 779, column 39 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
608 if (_validKey(object) && _splay(object) == 0) retainSet.add(_root.key);
609 ^^^^^^
610 warning: line 791, column 23 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
611 int comp = _splay(object);
612 ^^^^^^
613 warning: line 168, column 14 of dart:isolate: [DownCastComposite] IsolateNatives .spawnFunction(entryPoint, message, paused).then((msg) => new Isolate(msg[1], pa useCapability: msg[2], terminateCapability: msg[3])) (Future<dynamic>) will need runtime check to cast to type Future<Isolate> 253 warning: line 168, column 14 of dart:isolate: [DownCastComposite] IsolateNatives .spawnFunction(entryPoint, message, paused).then((msg) => new Isolate(msg[1], pa useCapability: msg[2], terminateCapability: msg[3])) (Future<dynamic>) will need runtime check to cast to type Future<Isolate>
614 return IsolateNatives.spawnFunction(entryPoint, message, paused) 254 return IsolateNatives.spawnFunction(entryPoint, message, paused)
615 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 255 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
616 warning: line 234, column 14 of dart:isolate: [DownCastComposite] IsolateNatives .spawnUri(uri, args, message, paused).then((msg) => new Isolate(msg[1], pauseCap ability: msg[2], terminateCapability: msg[3])) (Future<dynamic>) will need runti me check to cast to type Future<Isolate> 256 warning: line 234, column 14 of dart:isolate: [DownCastComposite] IsolateNatives .spawnUri(uri, args, message, paused).then((msg) => new Isolate(msg[1], pauseCap ability: msg[2], terminateCapability: msg[3])) (Future<dynamic>) will need runti me check to cast to type Future<Isolate>
617 return IsolateNatives.spawnUri(uri, args, message, paused) 257 return IsolateNatives.spawnUri(uri, args, message, paused)
618 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 258 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
619 severe: line 452, column 28 of dart:_native_typed_data: [AnalyzerError] The gett er 'length' is not defined for the class 'NativeTypedData' 259 severe: line 452, column 28 of dart:_native_typed_data: [AnalyzerError] The gett er 'length' is not defined for the class 'NativeTypedData'
620 if (length == list.length) { 260 if (length == list.length) {
621 ^^^^^^ 261 ^^^^^^
622 warning: line 201, column 9 of dart:_native_typed_data: [DownCastImplicit] _stor age.sublist(start * 4, end * 4) (List<double>) will need runtime check to cast t o type NativeFloat32List 262 warning: line 201, column 9 of dart:_native_typed_data: [DownCastImplicit] _stor age.sublist(start * 4, end * 4) (List<double>) will need runtime check to cast t o type NativeFloat32List
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 ^^^^^^^^^^^^^^^^ 708 ^^^^^^^^^^^^^^^^
1069 warning: line 1869, column 12 of dart:core/uri.dart: [DownCastComposite] query.s plit("&").fold({}, (map, element) {int index = element.indexOf("="); if (index = = -1) {if (element != "") {map[decodeQueryComponent(element, encoding: encoding) ] = "";}} else if (index != 0) {var key = element.substring(0, index); var value = element.substring(index + 1); map[Uri.decodeQueryComponent(key, encoding: enc oding)] = decodeQueryComponent(value, encoding: encoding);} return map;}) (dynam ic) will need runtime check to cast to type Map<String, String> 709 warning: line 1869, column 12 of dart:core/uri.dart: [DownCastComposite] query.s plit("&").fold({}, (map, element) {int index = element.indexOf("="); if (index = = -1) {if (element != "") {map[decodeQueryComponent(element, encoding: encoding) ] = "";}} else if (index != 0) {var key = element.substring(0, index); var value = element.substring(index + 1); map[Uri.decodeQueryComponent(key, encoding: enc oding)] = decodeQueryComponent(value, encoding: encoding);} return map;}) (dynam ic) will need runtime check to cast to type Map<String, String>
1070 return query.split("&").fold({}, (map, element) { 710 return query.split("&").fold({}, (map, element) {
1071 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 711 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1072 warning: line 1901, column 12 of dart:core/uri.dart: [DownCastComposite] bytes.m ap((byteString) {int byte = int.parse(byteString); if (byte < 0 || byte > 255) { error('each part must be in the range of `0..255`');} return byte;}).toList() (L ist<dynamic>) will need runtime check to cast to type List<int> 712 warning: line 1901, column 12 of dart:core/uri.dart: [DownCastComposite] bytes.m ap((byteString) {int byte = int.parse(byteString); if (byte < 0 || byte > 255) { error('each part must be in the range of `0..255`');} return byte;}).toList() (L ist<dynamic>) will need runtime check to cast to type List<int>
1073 return bytes 713 return bytes
1074 ^^^^^^ 714 ^^^^^^
1075 warning: line 2023, column 12 of dart:core/uri.dart: [DownCastComposite] bytes ( List<dynamic>) will need runtime check to cast to type List<int> 715 warning: line 2023, column 12 of dart:core/uri.dart: [DownCastComposite] bytes ( List<dynamic>) will need runtime check to cast to type List<int>
1076 return bytes; 716 return bytes;
1077 ^^^^^ 717 ^^^^^
718 warning: line 310, column 12 of dart:_internal/iterable.dart: [DownCastComposite ] result (List<dynamic>) will need runtime check to cast to type List<E>
719 return result;
720 ^^^^^^
721 warning: line 357, column 39 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< S>
722 return new MappedIterable<S, T>._(iterable, function);
723 ^^^^^^^^
724 warning: line 378, column 17 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< S>
725 : super._(iterable, function);
726 ^^^^^^^^
727 warning: line 454, column 76 of dart:_internal/iterable.dart: [DownCastComposite ] _f ((dynamic) → Iterable<dynamic>) will need runtime check to cast to type (S) → Iterable<T>
728 Iterator<T> get iterator => new ExpandIterator<S, T>(_iterable.iterator, _f);
729 ^^
730 warning: line 481, column 29 of dart:_internal/iterable.dart: [DownCastComposite ] _f(_iterator.current).iterator (Iterator<dynamic>) will need runtime check to cast to type Iterator<T>
731 _currentExpansion = _f(_iterator.current).iterator;
732 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
733 warning: line 961, column 33 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< T>
734 return new WhereIterable<T>(iterable, f);
735 ^^^^^^^^
736 warning: line 961, column 43 of dart:_internal/iterable.dart: [DownCastComposite ] f ((dynamic) → bool) will need runtime check to cast to type (T) → bool
737 return new WhereIterable<T>(iterable, f);
738 ^
739 warning: line 978, column 35 of dart:_internal/iterable.dart: [DownCastComposite ] list (List<dynamic>) will need runtime check to cast to type Iterable<T>
740 return new SubListIterable<T>(list, 0, n);
741 ^^^^
742 warning: line 983, column 37 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< T>
743 return new TakeWhileIterable<T>(iterable, test);
744 ^^^^^^^^
745 warning: line 983, column 47 of dart:_internal/iterable.dart: [DownCastComposite ] test ((dynamic) → bool) will need runtime check to cast to type (T) → bool
746 return new TakeWhileIterable<T>(iterable, test);
747 ^^^^
748 warning: line 988, column 35 of dart:_internal/iterable.dart: [DownCastComposite ] list (List<dynamic>) will need runtime check to cast to type Iterable<T>
749 return new SubListIterable<T>(list, n, null);
750 ^^^^
751 warning: line 993, column 37 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< T>
752 return new SkipWhileIterable<T>(iterable, test);
753 ^^^^^^^^
754 warning: line 993, column 47 of dart:_internal/iterable.dart: [DownCastComposite ] test ((dynamic) → bool) will need runtime check to cast to type (T) → bool
755 return new SkipWhileIterable<T>(iterable, test);
756 ^^^^
757 warning: line 997, column 40 of dart:_internal/iterable.dart: [DownCastComposite ] list (List<dynamic>) will need runtime check to cast to type Iterable<T>
758 return new ReversedListIterable<T>(list);
759 ^^^^
760 warning: line 1033, column 35 of dart:_internal/iterable.dart: [DownCastComposit e] list (List<dynamic>) will need runtime check to cast to type Iterable<T>
761 return new SubListIterable<T>(list, start, end);
762 ^^^^
763 warning: line 1115, column 31 of dart:_internal/iterable.dart: [DownCastComposit e] l (List<dynamic>) will need runtime check to cast to type List<T>
764 return new ListMapView<T>(l);
765 ^
766 warning: line 251, column 59 of dart:_internal/list.dart: [DownCastImplicit] key (Object) will need runtime check to cast to type int
767 E operator[] (Object key) => containsKey(key) ? _values[key] : null;
768 ^^^
769 warning: line 179, column 12 of dart:collection: [DownCastComposite] JS('var', ' #.splice(#, 2)[1]', bucket, index) (dynamic) will need runtime check to cast to type V
770 return JS('var', '#.splice(#, 2)[1]', bucket, index);
771 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
772 warning: line 193, column 14 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
773 action(key, this[key]);
774 ^^^
775 warning: line 261, column 17 of dart:collection: [DownCastComposite] _getTableEn try(table, key) (dynamic) will need runtime check to cast to type V
776 V value = _getTableEntry(table, key);
777 ^^^^^^^^^^^^^^^^^^^^^^^^^^
778 severe: line 372, column 61 of dart:collection: [InvalidRuntimeCheckError] Inval id runtime check on non-ground type K
779 : _validKey = (validKey != null) ? validKey : ((v) => v is K);
780 ^^^^^^
781 warning: line 397, column 49 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
782 return JS('int', '# & 0x3ffffff', _hashCode(key));
783 ^^^
784 warning: line 404, column 19 of dart:collection: [DownCastComposite] JS('var', ' #[#]', bucket, i) (dynamic) will need runtime check to cast to type K
785 if (_equals(JS('var', '#[#]', bucket, i), key)) return i;
786 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
787 warning: line 404, column 49 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
788 if (_equals(JS('var', '#[#]', bucket, i), key)) return i;
789 ^^^
790 warning: line 430, column 9 of dart:collection: [DownCastComposite] JS('var', '# [#]', keys, i) (dynamic) will need runtime check to cast to type E
791 f(JS('var', '#[#]', keys, i));
792 ^^^^^^^^^^^^^^^^^^^^^^^^^^
793 warning: line 456, column 18 of dart:collection: [DownCastComposite] JS('var', ' #[#]', keys, offset) (dynamic) will need runtime check to cast to type E
794 _current = JS('var', '#[#]', keys, offset);
795 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
796 warning: line 561, column 12 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
797 return cell._value;
798 ^^^^^^^^^^^
799 warning: line 627, column 12 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
800 return cell._value;
801 ^^^^^^^^^^^
802 warning: line 642, column 14 of dart:collection: [DownCastComposite] cell._key ( dynamic) will need runtime check to cast to type K
803 action(cell._key, cell._value);
804 ^^^^^^^^^
805 warning: line 642, column 25 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
806 action(cell._key, cell._value);
807 ^^^^^^^^^^^
808 warning: line 665, column 12 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
809 return cell._value;
810 ^^^^^^^^^^^
811 severe: line 795, column 61 of dart:collection: [InvalidRuntimeCheckError] Inval id runtime check on non-ground type K
812 : _validKey = (validKey != null) ? validKey : ((v) => v is K);
813 ^^^^^^
814 warning: line 820, column 49 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
815 return JS('int', '# & 0x3ffffff', _hashCode(key));
816 ^^^
817 warning: line 828, column 19 of dart:collection: [DownCastComposite] cell._key ( dynamic) will need runtime check to cast to type K
818 if (_equals(cell._key, key)) return i;
819 ^^^^^^^^^
820 warning: line 828, column 30 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
821 if (_equals(cell._key, key)) return i;
822 ^^^
823 warning: line 862, column 9 of dart:collection: [DownCastComposite] cell._key (d ynamic) will need runtime check to cast to type E
824 f(cell._key);
825 ^^^^^^^^^
826 warning: line 889, column 18 of dart:collection: [DownCastComposite] _cell._key (dynamic) will need runtime check to cast to type E
827 _current = _cell._key;
828 ^^^^^^^^^^
829 warning: line 951, column 14 of dart:collection: [DownCastComposite] this.contai ns(object) ? object : null (Object) will need runtime check to cast to type E
830 return this.contains(object) ? object : null;
831 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
832 warning: line 962, column 12 of dart:collection: [DownCastComposite] bucket[inde x] (dynamic) will need runtime check to cast to type E
833 return bucket[index];
834 ^^^^^^^^^^^^^
835 severe: line 1194, column 61 of dart:collection: [InvalidRuntimeCheckError] Inva lid runtime check on non-ground type E
836 : _validKey = (validKey != null) ? validKey : ((x) => x is E);
837 ^^^^^^
838 warning: line 1202, column 21 of dart:collection: [DownCastComposite] JS('var', '#[#]', bucket, i) (dynamic) will need runtime check to cast to type E
839 if (_equality(JS('var', '#[#]', bucket, i), element)) return i;
840 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
841 warning: line 1202, column 51 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
842 if (_equality(JS('var', '#[#]', bucket, i), element)) return i;
843 ^^^^^^^
844 warning: line 1212, column 47 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
845 return JS('int', '# & 0x3ffffff', _hasher(element));
846 ^^^^^^^
847 warning: line 1251, column 18 of dart:collection: [DownCastComposite] JS('var', '#[#]', elements, offset) (dynamic) will need runtime check to cast to type E
848 _current = JS('var', '#[#]', elements, offset);
849 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
850 warning: line 1328, column 14 of dart:collection: [DownCastComposite] this.conta ins(object) ? object : null (Object) will need runtime check to cast to type E
851 return this.contains(object) ? object : null;
852 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
853 warning: line 1340, column 12 of dart:collection: [DownCastComposite] bucket[ind ex]._element (dynamic) will need runtime check to cast to type E
854 return bucket[index]._element;
855 ^^^^^^^^^^^^^^^^^^^^^^
856 warning: line 1347, column 14 of dart:collection: [DownCastComposite] cell._elem ent (dynamic) will need runtime check to cast to type E
857 action(cell._element);
858 ^^^^^^^^^^^^^
859 warning: line 1357, column 12 of dart:collection: [DownCastComposite] _first._el ement (dynamic) will need runtime check to cast to type E
860 return _first._element;
861 ^^^^^^^^^^^^^^^
862 warning: line 1362, column 12 of dart:collection: [DownCastComposite] _last._ele ment (dynamic) will need runtime check to cast to type E
863 return _last._element;
864 ^^^^^^^^^^^^^^
865 warning: line 1431, column 19 of dart:collection: [DownCastComposite] cell._elem ent (dynamic) will need runtime check to cast to type E
866 E element = cell._element;
867 ^^^^^^^^^^^^^
868 severe: line 1596, column 61 of dart:collection: [InvalidRuntimeCheckError] Inva lid runtime check on non-ground type E
869 : _validKey = (validKey != null) ? validKey : ((x) => x is E);
870 ^^^^^^
871 warning: line 1606, column 21 of dart:collection: [DownCastComposite] cell._elem ent (dynamic) will need runtime check to cast to type E
872 if (_equality(cell._element, element)) return i;
873 ^^^^^^^^^^^^^
874 warning: line 1606, column 36 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
875 if (_equality(cell._element, element)) return i;
876 ^^^^^^^
877 warning: line 1616, column 47 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
878 return JS('int', '# & 0x3ffffff', _hasher(element));
879 ^^^^^^^
880 warning: line 1678, column 18 of dart:collection: [DownCastComposite] _cell._ele ment (dynamic) will need runtime check to cast to type E
881 _current = _cell._element;
882 ^^^^^^^^^^^^^^
883 warning: line 112, column 40 of dart:collection/hash_map.dart: [DownCastComposit e] v (dynamic) will need runtime check to cast to type V
884 other.forEach((k, v) { result[k] = v; });
885 ^
886 warning: line 112, column 35 of dart:collection/hash_map.dart: [DownCastComposit e] k (dynamic) will need runtime check to cast to type K
887 other.forEach((k, v) { result[k] = v; });
888 ^
889 warning: line 128, column 17 of dart:collection/hash_set.dart: [DownCastComposit e] elements (Iterable<dynamic>) will need runtime check to cast to type Iterable <E>
890 for (E e in elements) result.add(e);
891 ^^^^^^^^
892 warning: line 33, column 16 of dart:collection/iterator.dart: [DownCastComposite ] _iterator.current (dynamic) will need runtime check to cast to type E
893 E result = _iterator.current;
894 ^^^^^^^^^^^^^^^^^
895 warning: line 99, column 40 of dart:collection/linked_hash_map.dart: [DownCastCo mposite] v (dynamic) will need runtime check to cast to type V
896 other.forEach((k, v) { result[k] = v; });
897 ^
898 warning: line 99, column 35 of dart:collection/linked_hash_map.dart: [DownCastCo mposite] k (dynamic) will need runtime check to cast to type K
899 other.forEach((k, v) { result[k] = v; });
900 ^
901 warning: line 142, column 12 of dart:collection/linked_hash_map.dart: [DownCastC omposite] fillLiteralMap(keyValuePairs, new _LinkedHashMap<K, V>()) (dynamic) wi ll need runtime check to cast to type LinkedHashMap<K, V>
902 return fillLiteralMap(keyValuePairs, new _LinkedHashMap<K, V>());
903 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
904 warning: line 65, column 56 of dart:collection/linked_list.dart: [DownCastCompos ite] entry (dynamic) will need runtime check to cast to type E
905 entries.forEach((entry) => _insertAfter(_previous, entry));
906 ^^^^^
907 warning: line 93, column 17 of dart:collection/linked_list.dart: [DownCastCompos ite] next (_LinkedListLink) will need runtime check to cast to type E
908 E entry = next;
909 ^^^^
910 warning: line 105, column 12 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
911 return _next;
912 ^^^^^
913 warning: line 112, column 12 of dart:collection/linked_list.dart: [DownCastCompo site] _previous (_LinkedListLink) will need runtime check to cast to type E
914 return _previous;
915 ^^^^^^^^^
916 warning: line 122, column 12 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
917 return _next;
918 ^^^^^
919 warning: line 134, column 14 of dart:collection/linked_list.dart: [DownCastCompo site] current (_LinkedListLink) will need runtime check to cast to type E
920 action(current);
921 ^^^^^^^
922 warning: line 192, column 16 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
923 _current = _next;
924 ^^^^^
925 warning: line 249, column 16 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
926 E result = _next;
927 ^^^^^
928 warning: line 365, column 19 of dart:collection/list.dart: [DownCastImplicit] it erable (Iterable<E>) will need runtime check to cast to type List<dynamic>
929 otherList = iterable;
930 ^^^^^^^^
931 warning: line 377, column 27 of dart:collection/list.dart: [DownCastComposite] o therList[otherStart + i] (dynamic) will need runtime check to cast to type E
932 this[start + i] = otherList[otherStart + i];
933 ^^^^^^^^^^^^^^^^^^^^^^^^^
934 warning: line 381, column 27 of dart:collection/list.dart: [DownCastComposite] o therList[otherStart + i] (dynamic) will need runtime check to cast to type E
935 this[start + i] = otherList[otherStart + i];
936 ^^^^^^^^^^^^^^^^^^^^^^^^^
937 warning: line 122, column 18 of dart:collection/maps.dart: [DownCastComposite] _ map[_map.keys.first] (dynamic) will need runtime check to cast to type V
938 V get first => _map[_map.keys.first];
939 ^^^^^^^^^^^^^^^^^^^^^
940 warning: line 123, column 19 of dart:collection/maps.dart: [DownCastComposite] _ map[_map.keys.single] (dynamic) will need runtime check to cast to type V
941 V get single => _map[_map.keys.single];
942 ^^^^^^^^^^^^^^^^^^^^^^
943 warning: line 124, column 17 of dart:collection/maps.dart: [DownCastComposite] _ map[_map.keys.last] (dynamic) will need runtime check to cast to type V
944 V get last => _map[_map.keys.last];
945 ^^^^^^^^^^^^^^^^^^^^
946 warning: line 144, column 18 of dart:collection/maps.dart: [DownCastComposite] _ map[_keys.current] (dynamic) will need runtime check to cast to type V
947 _current = _map[_keys.current];
948 ^^^^^^^^^^^^^^^^^^^
949 warning: line 208, column 23 of dart:collection/queue.dart: [DownCastComposite] elements (Iterable<dynamic>) will need runtime check to cast to type Iterable<E>
950 for (final E e in elements) {
951 ^^^^^^^^
952 warning: line 211, column 12 of dart:collection/queue.dart: [DownCastComposite] list (Queue<E>) will need runtime check to cast to type DoubleLinkedQueue<E>
953 return list;
954 ^^^^
955 warning: line 402, column 40 of dart:collection/queue.dart: [DownCastComposite] sourceList (List<dynamic>) will need runtime check to cast to type Iterable<E>
956 queue._table.setRange(0, length, sourceList, 0);
957 ^^^^^^^^^^
958 warning: line 411, column 31 of dart:collection/queue.dart: [DownCastComposite] elements (Iterable<dynamic>) will need runtime check to cast to type Iterable<E>
959 for (final E element in elements) {
960 ^^^^^^^^
961 warning: line 480, column 52 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
962 _table.setRange(length, length + addCount, list, 0);
963 ^^^^
964 warning: line 486, column 52 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
965 _table.setRange(_tail, _tail + addCount, list, 0);
966 ^^^^
967 warning: line 490, column 52 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
968 _table.setRange(_tail, _tail + endSpace, list, 0);
969 ^^^^
970 warning: line 491, column 40 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
971 _table.setRange(0, preSpace, list, endSpace);
972 ^^^^
973 warning: line 738, column 16 of dart:collection/queue.dart: [DownCastComposite] _queue._table[_position] (dynamic) will need runtime check to cast to type E
974 _current = _queue._table[_position];
975 ^^^^^^^^^^^^^^^^^^^^^^^^
976 severe: line 610, column 60 of dart:collection/splay_tree.dart: [AnalyzerError] The getter '_validKey' is not defined for the class '_SplayTree<K>'
977 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
978 ^^^^^^^^^
979 severe: line 610, column 38 of dart:collection/splay_tree.dart: [AnalyzerError] The getter '_comparator' is not defined for the class '_SplayTree<K>'
980 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
981 ^^^^^^^^^^^
982 warning: line 151, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] current (_SplayTreeNode<dynamic>) will need runtime check to cast to type _ SplayTreeNode<K>
983 return current;
984 ^^^^^^^
985 warning: line 167, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] current (_SplayTreeNode<dynamic>) will need runtime check to cast to type _ SplayTreeNode<K>
986 return current;
987 ^^^^^^^
988 warning: line 265, column 23 of dart:collection/splay_tree.dart: [DownCastCompos ite] (compare == null) ? Comparable.compare : compare (dynamic) will need runtim e check to cast to type (K, K) → int
989 : _comparator = (compare == null) ? Comparable.compare : compare,
990 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
991 severe: line 266, column 65 of dart:collection/splay_tree.dart: [InvalidRuntimeC heckError] Invalid runtime check on non-ground type K
992 _validKey = (isValidKey != null) ? isValidKey : ((v) => v is K);
993 ^^^^^^
994 warning: line 275, column 40 of dart:collection/splay_tree.dart: [DownCastCompos ite] v (dynamic) will need runtime check to cast to type V
995 other.forEach((k, v) { result[k] = v; });
996 ^
997 warning: line 275, column 35 of dart:collection/splay_tree.dart: [DownCastCompos ite] k (dynamic) will need runtime check to cast to type K
998 other.forEach((k, v) { result[k] = v; });
999 ^
1000 warning: line 328, column 25 of dart:collection/splay_tree.dart: [DownCastCompos ite] key (Object) will need runtime check to cast to type K
1001 int comp = _splay(key);
1002 ^^^
1003 warning: line 331, column 16 of dart:collection/splay_tree.dart: [DownCastCompos ite] mapRoot.value (dynamic) will need runtime check to cast to type V
1004 return mapRoot.value;
1005 ^^^^^^^^^^^^^
1006 warning: line 339, column 41 of dart:collection/splay_tree.dart: [DownCastCompos ite] key (Object) will need runtime check to cast to type K
1007 _SplayTreeMapNode mapRoot = _remove(key);
1008 ^^^
1009 warning: line 340, column 33 of dart:collection/splay_tree.dart: [DownCastCompos ite] mapRoot.value (dynamic) will need runtime check to cast to type V
1010 if (mapRoot != null) return mapRoot.value;
1011 ^^^^^^^^^^^^^
1012 warning: line 363, column 14 of dart:collection/splay_tree.dart: [DownCastCompos ite] mapRoot.value (dynamic) will need runtime check to cast to type V
1013 return mapRoot.value;
1014 ^^^^^^^^^^^^^
1015 warning: line 394, column 38 of dart:collection/splay_tree.dart: [DownCastCompos ite] nodes.current (_SplayTreeNode<K>) will need runtime check to cast to type _ SplayTreeMapNode<K, V>
1016 _SplayTreeMapNode<K, V> node = nodes.current;
1017 ^^^^^^^^^^^^^
1018 warning: line 408, column 37 of dart:collection/splay_tree.dart: [DownCastCompos ite] key (Object) will need runtime check to cast to type K
1019 return _validKey(key) && _splay(key) == 0;
1020 ^^^
1021 warning: line 420, column 41 of dart:collection/splay_tree.dart: [DownCastImplic it] node.right (_SplayTreeNode<dynamic>) will need runtime check to cast to type _SplayTreeMapNode<dynamic, dynamic>
1022 if (node.right != null && visit(node.right)) return true;
1023 ^^^^^^^^^^
1024 warning: line 421, column 16 of dart:collection/splay_tree.dart: [DownCastImplic it] node.left (_SplayTreeNode<dynamic>) will need runtime check to cast to type _SplayTreeMapNode<dynamic, dynamic>
1025 node = node.left;
1026 ^^^^^^^^^
1027 warning: line 425, column 18 of dart:collection/splay_tree.dart: [DownCastImplic it] _root (_SplayTreeNode<K>) will need runtime check to cast to type _SplayTree MapNode<dynamic, dynamic>
1028 return visit(_root);
1029 ^^^^^
1030 warning: line 441, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] _first.key (dynamic) will need runtime check to cast to type K
1031 return _first.key;
1032 ^^^^^^^^^^
1033 warning: line 449, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] _last.key (dynamic) will need runtime check to cast to type K
1034 return _last.key;
1035 ^^^^^^^^^
1036 warning: line 545, column 22 of dart:collection/splay_tree.dart: [DownCastImplic it] _currentNode (_SplayTreeNode<dynamic>) will need runtime check to cast to ty pe _SplayTreeMapNode<dynamic, dynamic>
1037 return _getValue(_currentNode);
1038 ^^^^^^^^^^^^
1039 warning: line 610, column 29 of dart:collection/splay_tree.dart: [DownCastCompos ite] setOrMap._comparator (dynamic) will need runtime check to cast to type (K, K) → int
1040 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
1041 ^^^^^^^^^^^^^^^^^^^^
1042 warning: line 610, column 51 of dart:collection/splay_tree.dart: [DownCastCompos ite] setOrMap._validKey (dynamic) will need runtime check to cast to type (Objec t) → bool
1043 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
1044 ^^^^^^^^^^^^^^^^^^
1045 warning: line 628, column 39 of dart:collection/splay_tree.dart: [DownCastCompos ite] node.key (dynamic) will need runtime check to cast to type K
1046 K _getValue(_SplayTreeNode node) => node.key;
1047 ^^^^^^^^
1048 warning: line 633, column 42 of dart:collection/splay_tree.dart: [DownCastCompos ite] node.value (dynamic) will need runtime check to cast to type V
1049 V _getValue(_SplayTreeMapNode node) => node.value;
1050 ^^^^^^^^^^
1051 warning: line 641, column 55 of dart:collection/splay_tree.dart: [DownCastCompos ite] node (_SplayTreeNode<dynamic>) will need runtime check to cast to type _Spl ayTreeNode<K>
1052 _SplayTreeNode<K> _getValue(_SplayTreeNode node) => node;
1053 ^^^^
1054 warning: line 691, column 23 of dart:collection/splay_tree.dart: [DownCastCompos ite] (compare == null) ? Comparable.compare : compare (dynamic) will need runtim e check to cast to type (E, E) → int
1055 : _comparator = (compare == null) ? Comparable.compare : compare,
1056 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1057 severe: line 692, column 65 of dart:collection/splay_tree.dart: [InvalidRuntimeC heckError] Invalid runtime check on non-ground type E
1058 _validKey = (isValidKey != null) ? isValidKey : ((v) => v is E);
1059 ^^^^^^
1060 warning: line 705, column 29 of dart:collection/splay_tree.dart: [DownCastCompos ite] elements (Iterable<dynamic>) will need runtime check to cast to type Iterab le<E>
1061 for (final E element in elements) {
1062 ^^^^^^^^
1063 warning: line 723, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] _first.key (dynamic) will need runtime check to cast to type E
1064 return _first.key;
1065 ^^^^^^^^^^
1066 warning: line 728, column 12 of dart:collection/splay_tree.dart: [DownCastCompos ite] _last.key (dynamic) will need runtime check to cast to type E
1067 return _last.key;
1068 ^^^^^^^^^
1069 warning: line 739, column 40 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
1070 return _validKey(object) && _splay(object) == 0;
1071 ^^^^^^
1072 warning: line 751, column 20 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
1073 return _remove(object) != null;
1074 ^^^^^^
1075 warning: line 765, column 39 of dart:collection/splay_tree.dart: [DownCastCompos ite] element (Object) will need runtime check to cast to type E
1076 if (_validKey(element)) _remove(element);
1077 ^^^^^^^
1078 warning: line 779, column 39 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
1079 if (_validKey(object) && _splay(object) == 0) retainSet.add(_root.key);
1080 ^^^^^^
1081 warning: line 791, column 23 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
1082 int comp = _splay(object);
1083 ^^^^^^
1084 severe: line 514, column 46 of dart:js: [AnalyzerError] The name 'Window' is not defined and cannot be used in an 'is' expression
1085 || o is Node || o is TypedData || o is Window) {
1086 ^^^^^^
1087 severe: line 553, column 46 of dart:js: [AnalyzerError] The name 'Window' is not defined and cannot be used in an 'is' expression
1088 || o is Node || o is TypedData || o is Window)) {
1089 ^^^^^^
1090 severe: line 467, column 5 of dart:js: [AnalyzerError] Undefined name 'getIsolat eAffinityTag'
1091 getIsolateAffinityTag(r'_$dart_dartClosure');
1092 ^^^^^^^^^^^^^^^^^^^^^
1093 severe: line 552, column 60 of dart:js: [AnalyzerError] The name 'ImageData' is not defined and cannot be used in an 'is' expression
1094 && (o is Blob || o is Event || o is KeyRange || o is ImageData
1095 ^^^^^^^^^
1096 severe: line 513, column 63 of dart:js: [AnalyzerError] The name 'ImageData' is not defined and cannot be used in an 'is' expression
1097 } else if (o is Blob || o is Event || o is KeyRange || o is ImageData
1098 ^^^^^^^^^
1099 severe: line 465, column 5 of dart:js: [AnalyzerError] Undefined name 'getIsolat eAffinityTag'
1100 getIsolateAffinityTag(r'_$dart_dartObject');
1101 ^^^^^^^^^^^^^^^^^^^^^
1102 severe: line 514, column 15 of dart:js: [AnalyzerError] The name 'Node' is not d efined and cannot be used in an 'is' expression
1103 || o is Node || o is TypedData || o is Window) {
1104 ^^^^
1105 severe: line 553, column 15 of dart:js: [AnalyzerError] The name 'Node' is not d efined and cannot be used in an 'is' expression
1106 || o is Node || o is TypedData || o is Window)) {
1107 ^^^^
1108 severe: line 513, column 32 of dart:js: [AnalyzerError] The name 'Event' is not defined and cannot be used in an 'is' expression
1109 } else if (o is Blob || o is Event || o is KeyRange || o is ImageData
1110 ^^^^^
1111 severe: line 552, column 29 of dart:js: [AnalyzerError] The name 'Event' is not defined and cannot be used in an 'is' expression
1112 && (o is Blob || o is Event || o is KeyRange || o is ImageData
1113 ^^^^^
1114 warning: line 449, column 29 of dart:js: [AnalyzerError] Local variables cannot be referenced before they are declared
1115 _checkRange(start, end, length);
1116 ^^^^^^
1117 severe: line 465, column 5 of dart:js: [AnalyzerError] The function 'getIsolateA ffinityTag' is not defined
1118 getIsolateAffinityTag(r'_$dart_dartObject');
1119 ^^^^^^^^^^^^^^^^^^^^^
1120 severe: line 552, column 43 of dart:js: [AnalyzerError] The name 'KeyRange' is n ot defined and cannot be used in an 'is' expression
1121 && (o is Blob || o is Event || o is KeyRange || o is ImageData
1122 ^^^^^^^^
1123 severe: line 513, column 46 of dart:js: [AnalyzerError] The name 'KeyRange' is n ot defined and cannot be used in an 'is' expression
1124 } else if (o is Blob || o is Event || o is KeyRange || o is ImageData
1125 ^^^^^^^^
1126 severe: line 467, column 5 of dart:js: [AnalyzerError] The function 'getIsolateA ffinityTag' is not defined
1127 getIsolateAffinityTag(r'_$dart_dartClosure');
1128 ^^^^^^^^^^^^^^^^^^^^^
1129 severe: line 552, column 16 of dart:js: [AnalyzerError] The name 'Blob' is not d efined and cannot be used in an 'is' expression
1130 && (o is Blob || o is Event || o is KeyRange || o is ImageData
1131 ^^^^
1132 severe: line 513, column 19 of dart:js: [AnalyzerError] The name 'Blob' is not d efined and cannot be used in an 'is' expression
1133 } else if (o is Blob || o is Event || o is KeyRange || o is ImageData
1134 ^^^^
1135 warning: line 357, column 44 of dart:js: [DownCastComposite] _convertToJS ((dyna mic) → dynamic) will need runtime check to cast to type (E) → dynamic
1136 : super._fromJs([]..addAll(other.map(_convertToJS)));
1137 ^^^^^^^^^^^^
1138 warning: line 390, column 12 of dart:js: [DownCastComposite] super[index] (dynam ic) will need runtime check to cast to type E
1139 return super[index];
1140 ^^^^^^^^^^^^
1141 warning: line 425, column 24 of dart:js: [DownCastImplicit] list (Object) will n eed runtime check to cast to type List<dynamic>
1142 callMethod('push', list);
1143 ^^^^
1144 warning: line 435, column 12 of dart:js: [DownCastComposite] callMethod('splice' , [index, 1])[0] (dynamic) will need runtime check to cast to type E
1145 return callMethod('splice', [index, 1])[0];
1146 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1147 warning: line 440, column 12 of dart:js: [DownCastComposite] callMethod('pop') ( dynamic) will need runtime check to cast to type E
1148 return callMethod('pop');
1149 ^^^^^^^^^^^^^^^^^
1150 warning: line 558, column 52 of dart:js: [DownCastImplicit] ms (num) will need r untime check to cast to type int
1151 return new DateTime.fromMillisecondsSinceEpoch(ms);
1152 ^^
1153 warning: line 568, column 12 of dart:js: [DownCastImplicit] _getDartProxy(o, _DA RT_CLOSURE_PROPERTY_NAME, (o) => new JsFunction._fromJs(o)) (Object) will need r untime check to cast to type JsObject
1154 return _getDartProxy(o, _DART_CLOSURE_PROPERTY_NAME,
1155 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1156 warning: line 571, column 12 of dart:js: [DownCastImplicit] _getDartProxy(o, _DA RT_OBJECT_PROPERTY_NAME, (o) => new JsArray._fromJs(o)) (Object) will need runti me check to cast to type JsObject
1157 return _getDartProxy(o, _DART_OBJECT_PROPERTY_NAME,
1158 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1159 warning: line 574, column 12 of dart:js: [DownCastImplicit] _getDartProxy(o, _DA RT_OBJECT_PROPERTY_NAME, (o) => new JsObject._fromJs(o)) (Object) will need runt ime check to cast to type JsObject
1160 return _getDartProxy(o, _DART_OBJECT_PROPERTY_NAME,
1161 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OLDNEW
« no previous file with comments | « tool/input_sdk/lib/js/dart2js/js_dart2js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698