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

Side by Side Diff: tool/sdk_expected_errors.txt

Issue 1235503010: fixes #219, able to compile multiple entry points (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 5 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
OLDNEW
1 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> 1 warning: [DownCastImplicit] rnd32.remainder(max) (num) will need runtime check t o cast to type int (dart:math, line 426, col 16)
2 return IsolateNatives.spawnFunction(entryPoint, message, paused) 2 warning: [DownCastComposite] x + other.x (num) will need runtime check to cast t o type T (dart:math/point.dart, line 37, col 25)
3 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 3 warning: [DownCastComposite] y + other.y (num) will need runtime check to cast t o type T (dart:math/point.dart, line 37, col 38)
4 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> 4 warning: [DownCastComposite] x - other.x (num) will need runtime check to cast t o type T (dart:math/point.dart, line 46, col 25)
5 return IsolateNatives.spawnUri(uri, args, message, paused) 5 warning: [DownCastComposite] y - other.y (num) will need runtime check to cast t o type T (dart:math/point.dart, line 46, col 38)
6 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 6 warning: [DownCastComposite] x * factor (num) will need runtime check to cast to type T (dart:math/point.dart, line 59, col 25)
7 warning: line 426, column 16 of dart:math: [DownCastImplicit] rnd32.remainder(ma x) (num) will need runtime check to cast to type int 7 warning: [DownCastComposite] y * factor (num) will need runtime check to cast to type T (dart:math/point.dart, line 59, col 37)
8 result = rnd32.remainder(max); // % max; 8 warning: [DownCastComposite] dx * dx + dy * dy (num) will need runtime check to cast to type T (dart:math/point.dart, line 86, col 12)
9 ^^^^^^^^^^^^^^^^^^^^ 9 warning: [DownCastComposite] left + width (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 33, col 18)
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 10 warning: [DownCastComposite] top + height (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 35, col 19)
11 return new Point<T>(x + other.x, y + other.y); 11 warning: [DownCastComposite] x0 (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 68, col 33)
12 ^^^^^^^^^^^ 12 warning: [DownCastComposite] y0 (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 68, col 37)
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 13 warning: [DownCastComposite] x1 - x0 (num) will need runtime check to cast to ty pe T (dart:math/rectangle.dart, line 68, col 41)
14 return new Point<T>(x + other.x, y + other.y); 14 warning: [DownCastComposite] y1 - y0 (num) will need runtime check to cast to ty pe T (dart:math/rectangle.dart, line 68, col 50)
15 ^^^^^^^^^^^ 15 warning: [DownCastComposite] left (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 95, col 29)
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 16 warning: [DownCastComposite] top (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 95, col 35)
17 return new Point<T>(x - other.x, y - other.y); 17 warning: [DownCastComposite] right - left (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 95, col 40)
18 ^^^^^^^^^^^ 18 warning: [DownCastComposite] bottom - top (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 95, col 54)
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 19 warning: [DownCastComposite] this.left + this.width (num) will need runtime chec k to cast to type T (dart:math/rectangle.dart, line 119, col 41)
20 return new Point<T>(x - other.x, y - other.y); 20 warning: [DownCastComposite] this.left + this.width (num) will need runtime chec k to cast to type T (dart:math/rectangle.dart, line 120, col 44)
21 ^^^^^^^^^^^ 21 warning: [DownCastComposite] this.top + this.height (num) will need runtime chec k to cast to type T (dart:math/rectangle.dart, line 121, col 7)
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 22 warning: [DownCastComposite] this.top + this.height (num) will need runtime chec k to cast to type T (dart:math/rectangle.dart, line 123, col 7)
23 return new Point<T>(x * factor, y * factor); 23 warning: [DownCastComposite] (width < 0) ? -width * 0 : width (num) will need ru ntime check to cast to type T (dart:math/rectangle.dart, line 151, col 22)
24 ^^^^^^^^^^ 24 warning: [DownCastComposite] (height < 0) ? -height * 0 : height (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 152, col 23)
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 25 warning: [DownCastComposite] min(a.x, b.x) (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 167, col 14)
26 return new Point<T>(x * factor, y * factor); 26 warning: [DownCastComposite] max(a.x, b.x) - left (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 168, col 15)
27 ^^^^^^^^^^ 27 warning: [DownCastComposite] min(a.y, b.y) (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 169, col 13)
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 28 warning: [DownCastComposite] max(a.y, b.y) - top (num) will need runtime check t o cast to type T (dart:math/rectangle.dart, line 170, col 16)
29 return dx * dx + dy * dy; 29 warning: [DownCastComposite] (width < 0) ? _clampToZero(width) : width (num) wil l need runtime check to cast to type T (dart:math/rectangle.dart, line 212, col 23)
30 ^^^^^^^^^^^^^^^^^ 30 warning: [DownCastComposite] (height < 0) ? _clampToZero(height) : height (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 213, c ol 24)
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 31 warning: [DownCastComposite] min(a.x, b.x) (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 228, col 14)
32 T get right => left + width; 32 warning: [DownCastComposite] max(a.x, b.x) - left (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 229, col 15)
33 ^^^^^^^^^^^^ 33 warning: [DownCastComposite] min(a.y, b.y) (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 230, col 13)
34 warning: line 35, column 19 of dart:math/rectangle.dart: [DownCastComposite] top + height (num) will need runtime check to cast to type T 34 warning: [DownCastComposite] max(a.y, b.y) - top (num) will need runtime check t o cast to type T (dart:math/rectangle.dart, line 231, col 16)
35 T get bottom => top + height; 35 warning: [DownCastComposite] _clampToZero(width) (num) will need runtime check t o cast to type T (dart:math/rectangle.dart, line 247, col 28)
36 ^^^^^^^^^^^^ 36 warning: [DownCastComposite] _clampToZero(height) (num) will need runtime check to cast to type T (dart:math/rectangle.dart, line 263, col 30)
37 warning: line 68, column 33 of dart:math/rectangle.dart: [DownCastComposite] x0 (num) will need runtime check to cast to type T 37 severe: [AnalyzerMessage] Classes cannot implement 'bool' (dart:_interceptors, l ine 29, col 45)
38 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0); 38 warning: [DownCastComposite] JS('var', r'#.pop()', this) (dynamic) will need run time check to cast to type E (dart:_interceptors/js_array.dart, line 80, col 12)
39 ^^ 39 warning: [DownCastComposite] JS('', '#[#]', this, i) (dynamic) will need runtime check to cast to type E (dart:_interceptors/js_array.dart, line 125, col 9)
40 warning: line 68, column 37 of dart:math/rectangle.dart: [DownCastComposite] y0 (num) will need runtime check to cast to type T 40 warning: [DownCastComposite] IterableMixinWorkaround.reduce(this, combine) (dyna mic) will need runtime check to cast to type E (dart:_interceptors/js_array.dart , line 161, col 12)
41 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0); 41 warning: [DownCastComposite] IterableMixinWorkaround.firstWhere(this, test, orEl se) (dynamic) will need runtime check to cast to type E (dart:_interceptors/js_a rray.dart, line 169, col 12)
42 ^^ 42 warning: [DownCastComposite] IterableMixinWorkaround.lastWhereList(this, test, o rElse) (dynamic) will need runtime check to cast to type E (dart:_interceptors/j s_array.dart, line 173, col 12)
43 warning: line 68, column 41 of dart:math/rectangle.dart: [DownCastComposite] x1 - x0 (num) will need runtime check to cast to type T 43 warning: [DownCastComposite] IterableMixinWorkaround.singleWhere(this, test) (dy namic) will need runtime check to cast to type E (dart:_interceptors/js_array.da rt, line 177, col 12)
44 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0); 44 warning: [DownCastComposite] JS('var', '#[#]', this, index) (dynamic) will need runtime check to cast to type E (dart:_interceptors/js_array.dart, line 313, col 12)
45 ^^^^^^^ 45 severe: [AnalyzerMessage] Classes cannot implement 'double' (dart:_interceptors/ js_number.dart, line 349, col 46)
46 warning: line 68, column 50 of dart:math/rectangle.dart: [DownCastComposite] y1 - y0 (num) will need runtime check to cast to type T 46 severe: [AnalyzerMessage] The return type 'JSNumber' is not a 'double', as defin ed by the method 'toDouble' (dart:_interceptors/js_number.dart, line 110, col 17 )
47 return new Rectangle<T>(x0, y0, x1 - x0, y1 - y0); 47 severe: [AnalyzerMessage] Classes cannot implement 'int' (dart:_interceptors/js_ number.dart, line 349, col 41)
48 ^^^^^^^ 48 severe: [AnalyzerMessage] Classes cannot implement 'num' (dart:_interceptors/js_ number.dart, line 16, col 47)
49 warning: line 95, column 29 of dart:math/rectangle.dart: [DownCastComposite] lef t (num) will need runtime check to cast to type T 49 severe: [AnalyzerMessage] Classes cannot implement 'double' (dart:_interceptors/ js_number.dart, line 420, col 44)
50 return new Rectangle<T>(left, top, right - left, bottom - top); 50 warning: [DownCastImplicit] JS('num', r'Math.ceil(#)', this) (num) will need run time check to cast to type double (dart:_interceptors/js_number.dart, line 83, c ol 28)
51 ^^^^ 51 warning: [DownCastImplicit] JS('num', r'Math.floor(#)', this) (num) will need ru ntime check to cast to type double (dart:_interceptors/js_number.dart, line 85, col 29)
52 warning: line 95, column 35 of dart:math/rectangle.dart: [DownCastComposite] top (num) will need runtime check to cast to type T 52 warning: [DownCastImplicit] JS('num', r'-Math.round(-#)', this) (num) will need runtime check to cast to type double (dart:_interceptors/js_number.dart, line 89 , col 14)
53 return new Rectangle<T>(left, top, right - left, bottom - top); 53 warning: [DownCastImplicit] JS('num', r'Math.round(#)', this) (num) will need ru ntime check to cast to type double (dart:_interceptors/js_number.dart, line 91, col 14)
54 ^^^ 54 severe: [StaticTypeError] Type check failed: this (JSNumber) is not of type doub le (dart:_interceptors/js_number.dart, line 110, col 17)
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 55 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.abs (() → num) is not a subtype of int.abs (() → int). (dart:_in terceptors/js_number.dart, line 349, col 13)
56 return new Rectangle<T>(left, top, right - left, bottom - top); 56 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.unary- (() → num) is not a subtype of int.unary- (() → int). (da rt:_interceptors/js_number.dart, line 349, col 13)
57 ^^^^^^^^^^^^ 57 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.<< ((num) → num) is not a subtype of int.<< ((int) → int). (dart :_interceptors/js_number.dart, line 349, col 13)
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 58 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.>> ((num) → num) is not a subtype of int.>> ((int) → int). (dart :_interceptors/js_number.dart, line 349, col 13)
59 return new Rectangle<T>(left, top, right - left, bottom - top); 59 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.& ((num) → num) is not a subtype of int.& ((int) → int). (dart:_ interceptors/js_number.dart, line 349, col 13)
60 ^^^^^^^^^^^^ 60 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.| ((num) → num) is not a subtype of int.| ((int) → int). (dart:_ interceptors/js_number.dart, line 349, col 13)
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 61 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.^ ((num) → num) is not a subtype of int.^ ((int) → int). (dart:_ interceptors/js_number.dart, line 349, col 13)
62 Point<T> get topRight => new Point<T>(this.left + this.width, this.top); 62 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.sign (() → num) is not a subtype of int.sign (() → int). (dart:_ interceptors/js_number.dart, line 349, col 13)
63 ^^^^^^^^^^^^^^^^^^^^^^ 63 warning: [DownCastImplicit] this & ((1 << width) - 1) (num) will need runtime ch eck to cast to type int (dart:_interceptors/js_number.dart, line 357, col 12)
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 64 warning: [DownCastImplicit] (this & (signMask - 1)) - (this & signMask) (num) wi ll need runtime check to cast to type int (dart:_interceptors/js_number.dart, li ne 362, col 12)
65 Point<T> get bottomRight => new Point<T>(this.left + this.width, 65 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.remainder ((num) → num) is not a subtype of double.remainder ((n um) → double). (dart:_interceptors/js_number.dart, line 420, col 16)
66 ^^^^^^^^^^^^^^^^^^^^^^ 66 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.abs (() → num) is not a subtype of double.abs (() → double). (da rt:_interceptors/js_number.dart, line 420, col 16)
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 67 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.unary- (() → num) is not a subtype of double.unary- (() → double ). (dart:_interceptors/js_number.dart, line 420, col 16)
68 this.top + this.height); 68 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.+ ((num) → num) is not a subtype of double.+ ((num) → double). ( dart:_interceptors/js_number.dart, line 420, col 16)
69 ^^^^^^^^^^^^^^^^^^^^^^ 69 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.- ((num) → num) is not a subtype of double.- ((num) → double). ( dart:_interceptors/js_number.dart, line 420, col 16)
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 70 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.* ((num) → num) is not a subtype of double.* ((num) → double). ( dart:_interceptors/js_number.dart, line 420, col 16)
71 this.top + this.height); 71 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.% ((num) → num) is not a subtype of double.% ((num) → double). ( dart:_interceptors/js_number.dart, line 420, col 16)
72 ^^^^^^^^^^^^^^^^^^^^^^ 72 severe: [InvalidMethodOverride] Base class introduces an invalid override. The t ype of JSNumber.sign (() → num) is not a subtype of double.sign (() → double). ( dart:_interceptors/js_number.dart, line 420, col 16)
73 warning: line 151, column 22 of dart:math/rectangle.dart: [DownCastComposite] (w idth < 0) ? -width * 0 : width (num) will need runtime check to cast to type T 73 severe: [AnalyzerMessage] Classes cannot implement 'String' (dart:_interceptors/ js_string.dart, line 14, col 47)
74 : this.width = (width < 0) ? -width * 0 : width, // Inline _clampToZero. 74 warning: [DownCastComposite] JS('JSExtendableArray', r'#.split(#)', this, patter n) (dynamic) will need runtime check to cast to type List<String> (dart:_interce ptors/js_string.dart, line 86, col 14)
75 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 75 warning: [DownCastComposite] JS('JSExtendableArray', r'#.split(#)', this, re) (d ynamic) will need runtime check to cast to type List<String> (dart:_interceptors /js_string.dart, line 89, col 14)
76 warning: line 152, column 23 of dart:math/rectangle.dart: [DownCastComposite] (h eight < 0) ? -height * 0 : height (num) will need runtime check to cast to type T 76 severe: [StaticTypeError] Type check failed: s += s (String) is not of type JSSt ring (dart:_interceptors/js_string.dart, line 346, col 7)
77 this.height = (height < 0) ? -height * 0 : height; 77 warning: [DownCastComposite] result (List<dynamic>) will need runtime check to c ast to type List<E> (dart:_internal/iterable.dart, line 310, col 12)
78 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 78 warning: [DownCastComposite] iterable (Iterable<dynamic>) will need runtime chec k to cast to type Iterable<S> (dart:_internal/iterable.dart, line 357, col 39)
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 79 warning: [DownCastComposite] iterable (Iterable<dynamic>) will need runtime chec k to cast to type Iterable<S> (dart:_internal/iterable.dart, line 378, col 17)
80 T left = min(a.x, b.x); 80 warning: [DownCastComposite] _f ((dynamic) → Iterable<dynamic>) will need runtim e check to cast to type (S) → Iterable<T> (dart:_internal/iterable.dart, line 45 4, col 76)
81 ^^^^^^^^^^^^^ 81 warning: [DownCastComposite] _f(_iterator.current).iterator (Iterator<dynamic>) will need runtime check to cast to type Iterator<T> (dart:_internal/iterable.dar t, line 481, col 29)
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 82 warning: [DownCastComposite] iterable (Iterable<dynamic>) will need runtime chec k to cast to type Iterable<T> (dart:_internal/iterable.dart, line 961, col 33)
83 T width = max(a.x, b.x) - left; 83 warning: [DownCastComposite] f ((dynamic) → bool) will need runtime check to cas t to type (T) → bool (dart:_internal/iterable.dart, line 961, col 43)
84 ^^^^^^^^^^^^^^^^^^^^ 84 warning: [DownCastComposite] list (List<dynamic>) will need runtime check to cas t to type Iterable<T> (dart:_internal/iterable.dart, line 978, col 35)
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 85 warning: [DownCastComposite] iterable (Iterable<dynamic>) will need runtime chec k to cast to type Iterable<T> (dart:_internal/iterable.dart, line 983, col 37)
86 T top = min(a.y, b.y); 86 warning: [DownCastComposite] test ((dynamic) → bool) will need runtime check to cast to type (T) → bool (dart:_internal/iterable.dart, line 983, col 47)
87 ^^^^^^^^^^^^^ 87 warning: [DownCastComposite] list (List<dynamic>) will need runtime check to cas t to type Iterable<T> (dart:_internal/iterable.dart, line 988, col 35)
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 88 warning: [DownCastComposite] iterable (Iterable<dynamic>) will need runtime chec k to cast to type Iterable<T> (dart:_internal/iterable.dart, line 993, col 37)
89 T height = max(a.y, b.y) - top; 89 warning: [DownCastComposite] test ((dynamic) → bool) will need runtime check to cast to type (T) → bool (dart:_internal/iterable.dart, line 993, col 47)
90 ^^^^^^^^^^^^^^^^^^^ 90 warning: [DownCastComposite] list (List<dynamic>) will need runtime check to cas t to type Iterable<T> (dart:_internal/iterable.dart, line 997, col 40)
91 warning: line 212, column 23 of dart:math/rectangle.dart: [DownCastComposite] (w idth < 0) ? _clampToZero(width) : width (num) will need runtime check to cast to type T 91 warning: [DownCastComposite] list (List<dynamic>) will need runtime check to cas t to type Iterable<T> (dart:_internal/iterable.dart, line 1033, col 35)
92 : this._width = (width < 0) ? _clampToZero(width) : width, 92 warning: [DownCastComposite] l (List<dynamic>) will need runtime check to cast t o type List<T> (dart:_internal/iterable.dart, line 1115, col 31)
93 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 93 warning: [DownCastImplicit] key (Object) will need runtime check to cast to type int (dart:_internal/list.dart, line 251, col 59)
94 warning: line 213, column 24 of dart:math/rectangle.dart: [DownCastComposite] (h eight < 0) ? _clampToZero(height) : height (num) will need runtime check to cast to type T 94 warning: [DownCastComposite] JS('var', '#.splice(#, 2)[1]', bucket, index) (dyna mic) will need runtime check to cast to type V (dart:collection, line 179, col 1 2)
95 this._height = (height < 0) ? _clampToZero(height) : height; 95 warning: [DownCastComposite] key (dynamic) will need runtime check to cast to ty pe K (dart:collection, line 193, col 14)
96 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 96 warning: [DownCastComposite] _getTableEntry(table, key) (dynamic) will need runt ime check to cast to type V (dart:collection, line 261, col 17)
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 97 severe: [InvalidRuntimeCheckError] Invalid runtime check on non-ground type K (d art:collection, line 372, col 61)
98 T left = min(a.x, b.x); 98 warning: [DownCastComposite] key (dynamic) will need runtime check to cast to ty pe K (dart:collection, line 397, col 49)
99 ^^^^^^^^^^^^^ 99 warning: [DownCastComposite] JS('var', '#[#]', bucket, i) (dynamic) will need ru ntime check to cast to type K (dart:collection, line 404, col 19)
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 100 warning: [DownCastComposite] key (dynamic) will need runtime check to cast to ty pe K (dart:collection, line 404, col 49)
101 T width = max(a.x, b.x) - left; 101 warning: [DownCastComposite] JS('var', '#[#]', keys, i) (dynamic) will need runt ime check to cast to type E (dart:collection, line 430, col 9)
102 ^^^^^^^^^^^^^^^^^^^^ 102 warning: [DownCastComposite] JS('var', '#[#]', keys, offset) (dynamic) will need runtime check to cast to type E (dart:collection, line 456, col 18)
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 103 warning: [DownCastComposite] cell._value (dynamic) will need runtime check to ca st to type V (dart:collection, line 561, col 12)
104 T top = min(a.y, b.y); 104 warning: [DownCastComposite] cell._value (dynamic) will need runtime check to ca st to type V (dart:collection, line 627, col 12)
105 ^^^^^^^^^^^^^ 105 warning: [DownCastComposite] cell._key (dynamic) will need runtime check to cast to type K (dart:collection, line 642, col 14)
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 106 warning: [DownCastComposite] cell._value (dynamic) will need runtime check to ca st to type V (dart:collection, line 642, col 25)
107 T height = max(a.y, b.y) - top; 107 warning: [DownCastComposite] cell._value (dynamic) will need runtime check to ca st to type V (dart:collection, line 665, col 12)
108 ^^^^^^^^^^^^^^^^^^^ 108 severe: [InvalidRuntimeCheckError] Invalid runtime check on non-ground type K (d art:collection, line 795, col 61)
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 109 warning: [DownCastComposite] key (dynamic) will need runtime check to cast to ty pe K (dart:collection, line 820, col 49)
110 if (width < 0) width = _clampToZero(width); 110 warning: [DownCastComposite] cell._key (dynamic) will need runtime check to cast to type K (dart:collection, line 828, col 19)
111 ^^^^^^^^^^^^^^^^^^^ 111 warning: [DownCastComposite] key (dynamic) will need runtime check to cast to ty pe K (dart:collection, line 828, col 30)
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 112 warning: [DownCastComposite] cell._key (dynamic) will need runtime check to cast to type E (dart:collection, line 862, col 9)
113 if (height < 0) height = _clampToZero(height); 113 warning: [DownCastComposite] _cell._key (dynamic) will need runtime check to cas t to type E (dart:collection, line 889, col 18)
114 ^^^^^^^^^^^^^^^^^^^^ 114 warning: [DownCastComposite] this.contains(object) ? object : null (Object) will need runtime check to cast to type E (dart:collection, line 951, col 14)
115 severe: line 29, column 45 of dart:_interceptors: [AnalyzerMessage] Classes cann ot implement 'bool' 115 warning: [DownCastComposite] bucket[index] (dynamic) will need runtime check to cast to type E (dart:collection, line 962, col 12)
116 class JSBool extends Interceptor implements bool { 116 severe: [InvalidRuntimeCheckError] Invalid runtime check on non-ground type E (d art:collection, line 1194, col 61)
117 ^^^^ 117 warning: [DownCastComposite] JS('var', '#[#]', bucket, i) (dynamic) will need ru ntime check to cast to type E (dart:collection, line 1202, col 21)
118 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 118 warning: [DownCastComposite] element (dynamic) will need runtime check to cast t o type E (dart:collection, line 1202, col 51)
119 return JS('var', r'#.pop()', this); 119 warning: [DownCastComposite] element (dynamic) will need runtime check to cast t o type E (dart:collection, line 1212, col 47)
120 ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 120 warning: [DownCastComposite] JS('var', '#[#]', elements, offset) (dynamic) will need runtime check to cast to type E (dart:collection, line 1251, col 18)
121 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 121 warning: [DownCastComposite] this.contains(object) ? object : null (Object) will need runtime check to cast to type E (dart:collection, line 1328, col 14)
122 f(JS('', '#[#]', this, i)); 122 warning: [DownCastComposite] bucket[index]._element (dynamic) will need runtime check to cast to type E (dart:collection, line 1340, col 12)
123 ^^^^^^^^^^^^^^^^^^^^^^^ 123 warning: [DownCastComposite] cell._element (dynamic) will need runtime check to cast to type E (dart:collection, line 1347, col 14)
124 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 124 warning: [DownCastComposite] _first._element (dynamic) will need runtime check t o cast to type E (dart:collection, line 1357, col 12)
125 return IterableMixinWorkaround.reduce(this, combine); 125 warning: [DownCastComposite] _last._element (dynamic) will need runtime check to cast to type E (dart:collection, line 1362, col 12)
126 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 126 warning: [DownCastComposite] cell._element (dynamic) will need runtime check to cast to type E (dart:collection, line 1431, col 19)
127 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 127 severe: [InvalidRuntimeCheckError] Invalid runtime check on non-ground type E (d art:collection, line 1596, col 61)
128 return IterableMixinWorkaround.firstWhere(this, test, orElse); 128 warning: [DownCastComposite] cell._element (dynamic) will need runtime check to cast to type E (dart:collection, line 1606, col 21)
129 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 129 warning: [DownCastComposite] element (dynamic) will need runtime check to cast t o type E (dart:collection, line 1606, col 36)
130 warning: line 173, column 12 of dart:_interceptors/js_array.dart: [DownCastCompo site] IterableMixinWorkaround.lastWhereList(this, test, orElse) (dynamic) will n eed runtime check to cast to type E 130 warning: [DownCastComposite] element (dynamic) will need runtime check to cast t o type E (dart:collection, line 1616, col 47)
131 return IterableMixinWorkaround.lastWhereList(this, test, orElse); 131 warning: [DownCastComposite] _cell._element (dynamic) will need runtime check to cast to type E (dart:collection, line 1678, col 18)
132 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 132 warning: [DownCastComposite] v (dynamic) will need runtime check to cast to type V (dart:collection/hash_map.dart, line 112, col 40)
133 warning: line 177, column 12 of dart:_interceptors/js_array.dart: [DownCastCompo site] IterableMixinWorkaround.singleWhere(this, test) (dynamic) will need runtim e check to cast to type E 133 warning: [DownCastComposite] k (dynamic) will need runtime check to cast to type K (dart:collection/hash_map.dart, line 112, col 35)
134 return IterableMixinWorkaround.singleWhere(this, test); 134 warning: [DownCastComposite] elements (Iterable<dynamic>) will need runtime chec k to cast to type Iterable<E> (dart:collection/hash_set.dart, line 128, col 17)
135 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 135 warning: [DownCastComposite] _iterator.current (dynamic) will need runtime check to cast to type E (dart:collection/iterator.dart, line 33, col 16)
136 warning: line 313, column 12 of dart:_interceptors/js_array.dart: [DownCastCompo site] JS('var', '#[#]', this, index) (dynamic) will need runtime check to cast t o type E 136 warning: [DownCastComposite] v (dynamic) will need runtime check to cast to type V (dart:collection/linked_hash_map.dart, line 99, col 40)
137 return JS('var', '#[#]', this, index); 137 warning: [DownCastComposite] k (dynamic) will need runtime check to cast to type K (dart:collection/linked_hash_map.dart, line 99, col 35)
138 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 138 warning: [DownCastComposite] fillLiteralMap(keyValuePairs, new _LinkedHashMap<K, V>()) (dynamic) will need runtime check to cast to type LinkedHashMap<K, V> (da rt:collection/linked_hash_map.dart, line 142, col 12)
139 severe: line 420, column 44 of dart:_interceptors/js_number.dart: [AnalyzerMessa ge] Classes cannot implement 'double' 139 warning: [DownCastComposite] entry (dynamic) will need runtime check to cast to type E (dart:collection/linked_list.dart, line 65, col 56)
140 class JSDouble extends JSNumber implements double { 140 warning: [DownCastComposite] next (_LinkedListLink) will need runtime check to c ast to type E (dart:collection/linked_list.dart, line 93, col 17)
141 ^^^^^^ 141 warning: [DownCastComposite] _next (_LinkedListLink) will need runtime check to cast to type E (dart:collection/linked_list.dart, line 105, col 12)
142 severe: line 349, column 41 of dart:_interceptors/js_number.dart: [AnalyzerMessa ge] Classes cannot implement 'int' 142 warning: [DownCastComposite] _previous (_LinkedListLink) will need runtime check to cast to type E (dart:collection/linked_list.dart, line 112, col 12)
143 class JSInt extends JSNumber implements int, double { 143 warning: [DownCastComposite] _next (_LinkedListLink) will need runtime check to cast to type E (dart:collection/linked_list.dart, line 122, col 12)
144 ^^^ 144 warning: [DownCastComposite] current (_LinkedListLink) will need runtime check t o cast to type E (dart:collection/linked_list.dart, line 134, col 14)
145 severe: line 16, column 47 of dart:_interceptors/js_number.dart: [AnalyzerMessag e] Classes cannot implement 'num' 145 warning: [DownCastComposite] _next (_LinkedListLink) will need runtime check to cast to type E (dart:collection/linked_list.dart, line 192, col 16)
146 class JSNumber extends Interceptor implements num { 146 warning: [DownCastComposite] _next (_LinkedListLink) will need runtime check to cast to type E (dart:collection/linked_list.dart, line 249, col 16)
147 ^^^ 147 warning: [DownCastImplicit] iterable (Iterable<E>) will need runtime check to ca st to type List<dynamic> (dart:collection/list.dart, line 365, col 19)
148 severe: line 110, column 17 of dart:_interceptors/js_number.dart: [AnalyzerMessa ge] The return type 'JSNumber' is not a 'double', as defined by the method 'toDo uble' 148 warning: [DownCastComposite] otherList[otherStart + i] (dynamic) will need runti me check to cast to type E (dart:collection/list.dart, line 377, col 27)
149 toDouble() => this; 149 warning: [DownCastComposite] otherList[otherStart + i] (dynamic) will need runti me check to cast to type E (dart:collection/list.dart, line 381, col 27)
150 ^^^^ 150 warning: [DownCastComposite] _map[_map.keys.first] (dynamic) will need runtime c heck to cast to type V (dart:collection/maps.dart, line 122, col 18)
151 severe: line 349, column 46 of dart:_interceptors/js_number.dart: [AnalyzerMessa ge] Classes cannot implement 'double' 151 warning: [DownCastComposite] _map[_map.keys.single] (dynamic) will need runtime check to cast to type V (dart:collection/maps.dart, line 123, col 19)
152 class JSInt extends JSNumber implements int, double { 152 warning: [DownCastComposite] _map[_map.keys.last] (dynamic) will need runtime ch eck to cast to type V (dart:collection/maps.dart, line 124, col 17)
153 ^^^^^^ 153 warning: [DownCastComposite] _map[_keys.current] (dynamic) will need runtime che ck to cast to type V (dart:collection/maps.dart, line 144, col 18)
154 warning: line 83, column 28 of dart:_interceptors/js_number.dart: [DownCastImpli cit] JS('num', r'Math.ceil(#)', this) (num) will need runtime check to cast to t ype double 154 warning: [DownCastComposite] elements (Iterable<dynamic>) will need runtime chec k to cast to type Iterable<E> (dart:collection/queue.dart, line 208, col 23)
155 double ceilToDouble() => JS('num', r'Math.ceil(#)', this); 155 warning: [DownCastComposite] list (Queue<E>) will need runtime check to cast to type DoubleLinkedQueue<E> (dart:collection/queue.dart, line 211, col 12)
156 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 156 warning: [DownCastComposite] sourceList (List<dynamic>) will need runtime check to cast to type Iterable<E> (dart:collection/queue.dart, line 402, col 40)
157 warning: line 85, column 29 of dart:_interceptors/js_number.dart: [DownCastImpli cit] JS('num', r'Math.floor(#)', this) (num) will need runtime check to cast to type double 157 warning: [DownCastComposite] elements (Iterable<dynamic>) will need runtime chec k to cast to type Iterable<E> (dart:collection/queue.dart, line 411, col 31)
158 double floorToDouble() => JS('num', r'Math.floor(#)', this); 158 warning: [DownCastComposite] list (List<dynamic>) will need runtime check to cas t to type Iterable<E> (dart:collection/queue.dart, line 480, col 52)
159 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 159 warning: [DownCastComposite] list (List<dynamic>) will need runtime check to cas t to type Iterable<E> (dart:collection/queue.dart, line 486, col 52)
160 warning: line 89, column 14 of dart:_interceptors/js_number.dart: [DownCastImpli cit] JS('num', r'-Math.round(-#)', this) (num) will need runtime check to cast t o type double 160 warning: [DownCastComposite] list (List<dynamic>) will need runtime check to cas t to type Iterable<E> (dart:collection/queue.dart, line 490, col 52)
161 return JS('num', r'-Math.round(-#)', this); 161 warning: [DownCastComposite] list (List<dynamic>) will need runtime check to cas t to type Iterable<E> (dart:collection/queue.dart, line 491, col 40)
162 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 162 warning: [DownCastComposite] _queue._table[_position] (dynamic) will need runtim e check to cast to type E (dart:collection/queue.dart, line 738, col 16)
163 warning: line 91, column 14 of dart:_interceptors/js_number.dart: [DownCastImpli cit] JS('num', r'Math.round(#)', this) (num) will need runtime check to cast to type double 163 severe: [AnalyzerMessage] The getter '_validKey' is not defined for the class '_ SplayTree<K>' (dart:collection/splay_tree.dart, line 610, col 60)
164 return JS('num', r'Math.round(#)', this); 164 severe: [AnalyzerMessage] The getter '_comparator' is not defined for the class '_SplayTree<K>' (dart:collection/splay_tree.dart, line 610, col 38)
165 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 165 warning: [DownCastComposite] current (_SplayTreeNode<dynamic>) will need runtime check to cast to type _SplayTreeNode<K> (dart:collection/splay_tree.dart, line 151, col 12)
166 severe: line 110, column 17 of dart:_interceptors/js_number.dart: [StaticTypeErr or] Type check failed: this (JSNumber) is not of type double 166 warning: [DownCastComposite] current (_SplayTreeNode<dynamic>) will need runtime check to cast to type _SplayTreeNode<K> (dart:collection/splay_tree.dart, line 167, col 12)
167 toDouble() => this; 167 warning: [DownCastComposite] (compare == null) ? Comparable.compare : compare (F unction) will need runtime check to cast to type (K, K) → int (dart:collection/s play_tree.dart, line 265, col 23)
168 ^^^^ 168 severe: [InvalidRuntimeCheckError] Invalid runtime check on non-ground type K (d art:collection/splay_tree.dart, line 266, col 65)
169 severe: line 349, column 13 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.abs (( ) → num) is not a subtype of int.abs (() → int). 169 warning: [DownCastComposite] v (dynamic) will need runtime check to cast to type V (dart:collection/splay_tree.dart, line 275, col 40)
170 class JSInt extends JSNumber implements int, double { 170 warning: [DownCastComposite] k (dynamic) will need runtime check to cast to type K (dart:collection/splay_tree.dart, line 275, col 35)
171 ^^^^^^^^^^^^^^^^ 171 warning: [DownCastComposite] key (Object) will need runtime check to cast to typ e K (dart:collection/splay_tree.dart, line 328, col 25)
172 severe: line 349, column 13 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.unary- (() → num) is not a subtype of int.unary- (() → int). 172 warning: [DownCastComposite] mapRoot.value (dynamic) will need runtime check to cast to type V (dart:collection/splay_tree.dart, line 331, col 16)
173 class JSInt extends JSNumber implements int, double { 173 warning: [DownCastComposite] key (Object) will need runtime check to cast to typ e K (dart:collection/splay_tree.dart, line 339, col 41)
174 ^^^^^^^^^^^^^^^^ 174 warning: [DownCastComposite] mapRoot.value (dynamic) will need runtime check to cast to type V (dart:collection/splay_tree.dart, line 340, col 33)
175 severe: line 349, column 13 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.<< ((n um) → num) is not a subtype of int.<< ((int) → int). 175 warning: [DownCastComposite] mapRoot.value (dynamic) will need runtime check to cast to type V (dart:collection/splay_tree.dart, line 363, col 14)
176 class JSInt extends JSNumber implements int, double { 176 warning: [DownCastComposite] nodes.current (_SplayTreeNode<K>) will need runtime check to cast to type _SplayTreeMapNode<K, V> (dart:collection/splay_tree.dart, line 394, col 38)
177 ^^^^^^^^^^^^^^^^ 177 warning: [DownCastComposite] key (Object) will need runtime check to cast to typ e K (dart:collection/splay_tree.dart, line 408, col 37)
178 severe: line 349, column 13 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.>> ((n um) → num) is not a subtype of int.>> ((int) → int). 178 warning: [DownCastImplicit] node.right (_SplayTreeNode<dynamic>) will need runti me check to cast to type _SplayTreeMapNode<dynamic, dynamic> (dart:collection/sp lay_tree.dart, line 420, col 41)
179 class JSInt extends JSNumber implements int, double { 179 warning: [DownCastImplicit] node.left (_SplayTreeNode<dynamic>) will need runtim e check to cast to type _SplayTreeMapNode<dynamic, dynamic> (dart:collection/spl ay_tree.dart, line 421, col 16)
180 ^^^^^^^^^^^^^^^^ 180 warning: [DownCastImplicit] _root (_SplayTreeNode<K>) will need runtime check to cast to type _SplayTreeMapNode<dynamic, dynamic> (dart:collection/splay_tree.da rt, line 425, col 18)
181 severe: line 349, column 13 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.& ((nu m) → num) is not a subtype of int.& ((int) → int). 181 warning: [DownCastComposite] _first.key (dynamic) will need runtime check to cas t to type K (dart:collection/splay_tree.dart, line 441, col 12)
182 class JSInt extends JSNumber implements int, double { 182 warning: [DownCastComposite] _last.key (dynamic) will need runtime check to cast to type K (dart:collection/splay_tree.dart, line 449, col 12)
183 ^^^^^^^^^^^^^^^^ 183 warning: [DownCastImplicit] _currentNode (_SplayTreeNode<dynamic>) will need run time check to cast to type _SplayTreeMapNode<dynamic, dynamic> (dart:collection/ splay_tree.dart, line 545, col 22)
184 severe: line 349, column 13 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.| ((nu m) → num) is not a subtype of int.| ((int) → int). 184 warning: [DownCastComposite] setOrMap._comparator (dynamic) will need runtime ch eck to cast to type (K, K) → int (dart:collection/splay_tree.dart, line 610, col 29)
185 class JSInt extends JSNumber implements int, double { 185 warning: [DownCastComposite] setOrMap._validKey (dynamic) will need runtime chec k to cast to type (Object) → bool (dart:collection/splay_tree.dart, line 610, co l 51)
186 ^^^^^^^^^^^^^^^^ 186 warning: [DownCastComposite] node.key (dynamic) will need runtime check to cast to type K (dart:collection/splay_tree.dart, line 628, col 39)
187 severe: line 349, column 13 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.^ ((nu m) → num) is not a subtype of int.^ ((int) → int). 187 warning: [DownCastComposite] node.value (dynamic) will need runtime check to cas t to type V (dart:collection/splay_tree.dart, line 633, col 42)
188 class JSInt extends JSNumber implements int, double { 188 warning: [DownCastComposite] node (_SplayTreeNode<dynamic>) will need runtime ch eck to cast to type _SplayTreeNode<K> (dart:collection/splay_tree.dart, line 641 , col 55)
189 ^^^^^^^^^^^^^^^^ 189 warning: [DownCastComposite] (compare == null) ? Comparable.compare : compare (F unction) will need runtime check to cast to type (E, E) → int (dart:collection/s play_tree.dart, line 691, col 23)
190 severe: line 349, column 13 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.sign ( () → num) is not a subtype of int.sign (() → int). 190 severe: [InvalidRuntimeCheckError] Invalid runtime check on non-ground type E (d art:collection/splay_tree.dart, line 692, col 65)
191 class JSInt extends JSNumber implements int, double { 191 warning: [DownCastComposite] elements (Iterable<dynamic>) will need runtime chec k to cast to type Iterable<E> (dart:collection/splay_tree.dart, line 705, col 29 )
192 ^^^^^^^^^^^^^^^^ 192 warning: [DownCastComposite] _first.key (dynamic) will need runtime check to cas t to type E (dart:collection/splay_tree.dart, line 723, col 12)
193 warning: line 357, column 12 of dart:_interceptors/js_number.dart: [DownCastImpl icit] this & ((1 << width) - 1) (num) will need runtime check to cast to type in t 193 warning: [DownCastComposite] _last.key (dynamic) will need runtime check to cast to type E (dart:collection/splay_tree.dart, line 728, col 12)
194 return this & ((1 << width) - 1); 194 warning: [DownCastComposite] object (Object) will need runtime check to cast to type E (dart:collection/splay_tree.dart, line 739, col 40)
195 ^^^^^^^^^^^^^^^^^^^^^^^^^ 195 warning: [DownCastComposite] object (Object) will need runtime check to cast to type E (dart:collection/splay_tree.dart, line 751, col 20)
196 warning: line 362, column 12 of dart:_interceptors/js_number.dart: [DownCastImpl icit] (this & (signMask - 1)) - (this & signMask) (num) will need runtime check to cast to type int 196 warning: [DownCastComposite] element (Object) will need runtime check to cast to type E (dart:collection/splay_tree.dart, line 765, col 39)
197 return (this & (signMask - 1)) - (this & signMask); 197 warning: [DownCastComposite] object (Object) will need runtime check to cast to type E (dart:collection/splay_tree.dart, line 779, col 39)
198 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 198 warning: [DownCastComposite] object (Object) will need runtime check to cast to type E (dart:collection/splay_tree.dart, line 791, col 23)
199 severe: line 420, column 16 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.remain der ((num) → num) is not a subtype of double.remainder ((num) → double). 199 severe: [AnalyzerMessage] The getter 'length' is not defined for the class 'Nati veTypedData' (dart:_native_typed_data, line 452, col 28)
200 class JSDouble extends JSNumber implements double { 200 severe: [AnalyzerMessage] The final variable 'buffer' must be initialized (dart: _native_typed_data, line 427, col 20)
201 ^^^^^^^^^^^^^^^^ 201 severe: [AnalyzerMessage] The final variable 'lengthInBytes' must be initialized (dart:_native_typed_data, line 24, col 13)
202 severe: line 420, column 16 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.abs (( ) → num) is not a subtype of double.abs (() → double). 202 severe: [AnalyzerMessage] The final variable 'elementSizeInBytes' must be initia lized (dart:_native_typed_data, line 446, col 13)
203 class JSDouble extends JSNumber implements double { 203 severe: [AnalyzerMessage] The final variable 'offsetInBytes' must be initialized (dart:_native_typed_data, line 439, col 13)
204 ^^^^^^^^^^^^^^^^ 204 severe: [AnalyzerMessage] The final variable 'lengthInBytes' must be initialized (dart:_native_typed_data, line 433, col 13)
205 severe: line 420, column 16 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.unary- (() → num) is not a subtype of double.unary- (() → double). 205 warning: [DownCastImplicit] _storage.sublist(start * 4, end * 4) (List<double>) will need runtime check to cast to type NativeFloat32List (dart:_native_typed_da ta, line 201, col 9)
206 class JSDouble extends JSNumber implements double { 206 warning: [DownCastImplicit] _storage.sublist(start * 4, end * 4) (List<int>) wil l need runtime check to cast to type Int32List (dart:_native_typed_data, line 31 1, col 9)
207 ^^^^^^^^^^^^^^^^ 207 warning: [DownCastImplicit] _storage.sublist(start * 2, end * 2) (List<double>) will need runtime check to cast to type NativeFloat64List (dart:_native_typed_da ta, line 415, col 9)
208 severe: line 420, column 16 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.+ ((nu m) → num) is not a subtype of double.+ ((num) → double). 208 warning: [DownCastImplicit] length == null ? _create2(buffer, offsetInBytes) : _ create3(buffer, offsetInBytes, length) (Int8List) will need runtime check to cas t to type NativeInt8List (dart:_native_typed_data, line 1106, col 12)
209 class JSDouble extends JSNumber implements double { 209 warning: [DownCastComposite] IsolateNatives.spawnFunction(entryPoint, message, p aused).then((msg) => new Isolate(msg[1], pauseCapability: msg[2], terminateCapab ility: msg[3])) (Future<dynamic>) will need runtime check to cast to type Future <Isolate> (dart:isolate, line 168, col 14)
210 ^^^^^^^^^^^^^^^^ 210 warning: [DownCastComposite] IsolateNatives.spawnUri(uri, args, message, paused) .then((msg) => new Isolate(msg[1], pauseCapability: msg[2], terminateCapability: msg[3])) (Future<dynamic>) will need runtime check to cast to type Future<Isola te> (dart:isolate, line 234, col 14)
211 severe: line 420, column 16 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.- ((nu m) → num) is not a subtype of double.- ((num) → double). 211 warning: [DownCastComposite] doneHandlers (dynamic) will need runtime check to c ast to type Iterable<SendPort> (dart:_isolate_helper, line 574, col 29)
212 class JSDouble extends JSNumber implements double { 212 warning: [DownCastComposite] args (dynamic) will need runtime check to cast to t ype List<String> (dart:_isolate_helper, line 833, col 37)
213 ^^^^^^^^^^^^^^^^ 213 warning: [DownCastComposite] msg['args'] (dynamic) will need runtime check to ca st to type List<String> (dart:_isolate_helper, line 880, col 11)
214 severe: line 420, column 16 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.* ((nu m) → num) is not a subtype of double.* ((num) → double). 214 warning: [DownCastImplicit] indexable (JSIndexable) will need runtime check to c ast to type JSArray<dynamic> (dart:_isolate_helper/isolate_serialization.dart, l ine 89, col 38)
215 class JSDouble extends JSNumber implements double { 215 warning: [DownCastImplicit] serializeTearOff (Function) will need runtime check to cast to type (dynamic) → dynamic (dart:_isolate_helper/isolate_serialization. dart, line 120, col 24)
216 ^^^^^^^^^^^^^^^^ 216 warning: [DownCastImplicit] serializeTearOff (Function) will need runtime check to cast to type (dynamic) → dynamic (dart:_isolate_helper/isolate_serialization. dart, line 121, col 26)
217 severe: line 420, column 16 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.% ((nu m) → num) is not a subtype of double.% ((num) → double). 217 warning: [DownCastImplicit] fields (List<dynamic>) will need runtime check to ca st to type JSArray<dynamic> (dart:_isolate_helper/isolate_serialization.dart, li ne 172, col 52)
218 class JSDouble extends JSNumber implements double { 218 warning: [DownCastImplicit] result (List<dynamic>) will need runtime check to ca st to type JSArray<dynamic> (dart:_isolate_helper/isolate_serialization.dart, li ne 250, col 58)
219 ^^^^^^^^^^^^^^^^ 219 warning: [DownCastImplicit] result (List<dynamic>) will need runtime check to ca st to type JSArray<dynamic> (dart:_isolate_helper/isolate_serialization.dart, li ne 258, col 61)
220 severe: line 420, column 16 of dart:_interceptors/js_number.dart: [InvalidMethod Override] Base class introduces an invalid override. The type of JSNumber.sign ( () → num) is not a subtype of double.sign (() → double). 220 warning: [DownCastImplicit] result (List<dynamic>) will need runtime check to ca st to type JSArray<dynamic> (dart:_isolate_helper/isolate_serialization.dart, li ne 266, col 36)
221 class JSDouble extends JSNumber implements double { 221 warning: [DownCastImplicit] result (List<dynamic>) will need runtime check to ca st to type JSArray<dynamic> (dart:_isolate_helper/isolate_serialization.dart, li ne 275, col 58)
222 ^^^^^^^^^^^^^^^^ 222 warning: [DownCastImplicit] fields (List<dynamic>) will need runtime check to ca st to type JSArray<dynamic> (dart:_isolate_helper/isolate_serialization.dart, li ne 357, col 29)
223 severe: line 14, column 47 of dart:_interceptors/js_string.dart: [AnalyzerMessag e] Classes cannot implement 'String' 223 warning: [DownCastImplicit] errorHandler (Function) will need runtime check to c ast to type (dynamic) → dynamic (dart:async/async_error.dart, line 20, col 39)
224 class JSString extends Interceptor implements String, JSIndexable { 224 severe: [AnalyzerMessage] The getter '_next' is not defined for the class 'Strea mSubscription<T>' (dart:async/broadcast_stream_controller.dart, line 211, col 38 )
225 ^^^^^^ 225 severe: [AnalyzerMessage] The method '_setRemoveAfterFiring' is not defined for the class 'StreamSubscription<T>' (dart:async/broadcast_stream_controller.dart, line 209, col 20)
226 warning: line 86, column 14 of dart:_interceptors/js_string.dart: [DownCastCompo site] JS('JSExtendableArray', r'#.split(#)', this, pattern) (dynamic) will need runtime check to cast to type List<String> 226 severe: [AnalyzerMessage] The getter '_next' is not defined for the class 'Strea mSubscription<T>' (dart:async/broadcast_stream_controller.dart, line 207, col 36 )
227 return JS('JSExtendableArray', r'#.split(#)', this, pattern); 227 severe: [AnalyzerMessage] The getter '_isFiring' is not defined for the class 'S treamSubscription<T>' (dart:async/broadcast_stream_controller.dart, line 208, co l 22)
228 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 228 severe: [AnalyzerMessage] The getter '_next' is not defined for the class 'Strea mSubscription<T>' (dart:async/broadcast_stream_controller.dart, line 206, col 32 )
229 warning: line 89, column 14 of dart:_interceptors/js_string.dart: [DownCastCompo site] JS('JSExtendableArray', r'#.split(#)', this, re) (dynamic) will need runti me check to cast to type List<String> 229 warning: [DownCastComposite] controller (_StreamControllerLifecycle<dynamic>) wi ll need runtime check to cast to type _StreamControllerLifecycle<T> (dart:async/ broadcast_stream_controller.dart, line 8, col 67)
230 return JS('JSExtendableArray', r'#.split(#)', this, re); 230 warning: [DownCastComposite] controller (_StreamControllerLifecycle<dynamic>) wi ll need runtime check to cast to type _StreamControllerLifecycle<T> (dart:async/ broadcast_stream_controller.dart, line 36, col 15)
231 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 231 warning: [DownCastComposite] super._controller (_StreamControllerLifecycle<T>) w ill need runtime check to cast to type _BroadcastStreamController<T> (dart:async /broadcast_stream_controller.dart, line 40, col 52)
232 severe: line 346, column 7 of dart:_interceptors/js_string.dart: [StaticTypeErro r] Type check failed: s += s (String) is not of type JSString 232 warning: [DownCastComposite] subscription (StreamSubscription<dynamic>) will nee d runtime check to cast to type _BroadcastSubscription<T> (dart:async/broadcast_ stream_controller.dart, line 196, col 18)
233 s += s; 233 warning: [DownCastComposite] subscription (StreamSubscription<dynamic>) will nee d runtime check to cast to type StreamSubscription<T> (dart:async/broadcast_stre am_controller.dart, line 201, col 12)
234 ^^^^^^ 234 warning: [DownCastComposite] subscription (StreamSubscription<T>) will need runt ime check to cast to type _BroadcastSubscription<T> (dart:async/broadcast_stream _controller.dart, line 212, col 23)
235 severe: line 452, column 28 of dart:_native_typed_data: [AnalyzerMessage] The ge tter 'length' is not defined for the class 'NativeTypedData' 235 warning: [DownCastComposite] link (_BroadcastSubscriptionLink) will need runtime check to cast to type _BroadcastSubscription<T> (dart:async/broadcast_stream_co ntroller.dart, line 309, col 48)
236 if (length == list.length) { 236 warning: [UninferredClosure] (_BroadcastSubscription<T> subscription) {subscript ion._close();} ((_BroadcastSubscription<T>) → dynamic) will need runtime check t o cast to type (_BufferingStreamSubscription<T>) → void (dart:async/broadcast_st ream_controller.dart, line 372, col 24)
237 ^^^^^^ 237 warning: [DownCastComposite] link (_BroadcastSubscriptionLink) will need runtime check to cast to type _BroadcastSubscription<T> (dart:async/broadcast_stream_co ntroller.dart, line 393, col 48)
238 severe: line 427, column 20 of dart:_native_typed_data: [AnalyzerMessage] The fi nal variable 'buffer' must be initialized 238 warning: [DownCastComposite] link (_BroadcastSubscriptionLink) will need runtime check to cast to type _BroadcastSubscription<T> (dart:async/broadcast_stream_co ntroller.dart, line 402, col 48)
239 final ByteBuffer buffer; 239 warning: [DownCastComposite] link (_BroadcastSubscriptionLink) will need runtime check to cast to type _BroadcastSubscription<T> (dart:async/broadcast_stream_co ntroller.dart, line 412, col 50)
240 ^^^^^^ 240 warning: [DownCastComposite] result (_Future<dynamic>) will need runtime check t o cast to type Future<T> (dart:async/future.dart, line 123, col 12)
241 severe: line 24, column 13 of dart:_native_typed_data: [AnalyzerMessage] The fin al variable 'lengthInBytes' must be initialized 241 warning: [DownCastComposite] result (_Future<dynamic>) will need runtime check t o cast to type Future<T> (dart:async/future.dart, line 149, col 12)
242 final int lengthInBytes; 242 warning: [DownCastComposite] result (_Future<dynamic>) will need runtime check t o cast to type Future<T> (dart:async/future.dart, line 233, col 12)
243 ^^^^^^^^^^^^^ 243 warning: [DownCastImplicit] callback (Function) will need runtime check to cast to type (dynamic) → dynamic (dart:async/future_impl.dart, line 112, col 12)
244 severe: line 446, column 13 of dart:_native_typed_data: [AnalyzerMessage] The fi nal variable 'elementSizeInBytes' must be initialized 244 warning: [DownCastComposite] callback (Function) will need runtime check to cast to type (dynamic) → bool (dart:async/future_impl.dart, line 117, col 12)
245 final int elementSizeInBytes; 245 warning: [DownCastImplicit] callback (Function) will need runtime check to cast to type () → dynamic (dart:async/future_impl.dart, line 121, col 12)
246 ^^^^^^^^^^^^^^^^^^ 246 warning: [DownCastComposite] result._zone.registerUnaryCallback(f) ((dynamic) → dynamic) will need runtime check to cast to type (T) → dynamic (dart:async/futur e_impl.dart, line 208, col 11)
247 severe: line 439, column 13 of dart:_native_typed_data: [AnalyzerMessage] The fi nal variable 'offsetInBytes' must be initialized 247 warning: [DownCastComposite] result._zone.registerUnaryCallback(test) ((dynamic) → dynamic) will need runtime check to cast to type (dynamic) → bool (dart:async /future_impl.dart, line 221, col 32)
248 final int offsetInBytes; 248 warning: [DownCastComposite] result (_Future<dynamic>) will need runtime check t o cast to type Future<T> (dart:async/future_impl.dart, line 233, col 12)
249 ^^^^^^^^^^^^^ 249 warning: [DownCastComposite] _resultOrListeners (dynamic) will need runtime chec k to cast to type T (dart:async/future_impl.dart, line 245, col 12)
250 severe: line 433, column 13 of dart:_native_typed_data: [AnalyzerMessage] The fi nal variable 'lengthInBytes' must be initialized 250 warning: [DownCastComposite] value (dynamic) will need runtime check to cast to type T (dart:async/future_impl.dart, line 347, col 17)
251 final int lengthInBytes; 251 warning: [DownCastComposite] value (dynamic) will need runtime check to cast to type T (dart:async/future_impl.dart, line 357, col 15)
252 ^^^^^^^^^^^^^ 252 warning: [DownCastComposite] value (dynamic) will need runtime check to cast to type Future<T> (dart:async/future_impl.dart, line 386, col 31)
253 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 253 warning: [DownCastComposite] typedFuture (Future<T>) will need runtime check to cast to type _Future<T> (dart:async/future_impl.dart, line 388, col 33)
254 _storage.sublist(start * 4, end * 4)); 254 warning: [DownCastComposite] value (dynamic) will need runtime check to cast to type T (dart:async/future_impl.dart, line 407, col 22)
255 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 255 warning: [DownCastImplicit] errorCallback (Function) will need runtime check to cast to type (dynamic) → dynamic (dart:async/future_impl.dart, line 515, col 54)
256 warning: line 311, column 9 of dart:_native_typed_data: [DownCastImplicit] _stor age.sublist(start * 4, end * 4) (List<int>) will need runtime check to cast to t ype Int32List 256 warning: [DownCastComposite] callback (dynamic) will need runtime check to cast to type () → void (dart:async/schedule_microtask.dart, line 66, col 61)
257 _storage.sublist(start * 4, end * 4)); 257 warning: [DownCastComposite] callback (dynamic) will need runtime check to cast to type () → void (dart:async/schedule_microtask.dart, line 71, col 60)
258 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 258 warning: [DownCastComposite] callback (dynamic) will need runtime check to cast to type () → void (dart:async/schedule_microtask.dart, line 84, col 55)
259 warning: line 415, column 9 of dart:_native_typed_data: [DownCastImplicit] _stor age.sublist(start * 2, end * 2) (List<double>) will need runtime check to cast t o type NativeFloat64List 259 severe: [AnalyzerMessage] The method '_addError' is not defined for the class 'S treamController' (dart:async/stream.dart, line 1227, col 17)
260 _storage.sublist(start * 2, end * 2)); 260 severe: [AnalyzerMessage] The getter '_addError' is not defined for the class 'S treamController' (dart:async/stream.dart, line 396, col 30)
261 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 261 severe: [AnalyzerMessage] The getter '_addError' is not defined for the class 'S treamController' (dart:async/stream.dart, line 321, col 34)
262 warning: line 1106, column 12 of dart:_native_typed_data: [DownCastImplicit] len gth == null ? _create2(buffer, offsetInBytes) : _create3(buffer, offsetInBytes, length) (Int8List) will need runtime check to cast to type NativeInt8List 262 warning: [DownCastComposite] value (dynamic) will need runtime check to cast to type T (dart:async/stream.dart, line 90, col 25)
263 return length == null 263 warning: [DownCastComposite] mapSink ((EventSink<T>) → EventSink<dynamic>) will need runtime check to cast to type (EventSink<dynamic>) → EventSink<dynamic> (da rt:async/stream.dart, line 217, col 41)
264 ^^^^^^^^^^^^^^^ 264 warning: [DownCastComposite] onListen ((StreamSubscription<T>) → void) will need runtime check to cast to type (StreamSubscription<dynamic>) → void (dart:async/ stream.dart, line 249, col 44)
265 warning: line 574, column 29 of dart:_isolate_helper: [DownCastComposite] doneHa ndlers (dynamic) will need runtime check to cast to type Iterable<SendPort> 265 warning: [DownCastComposite] onCancel ((StreamSubscription<T>) → void) will need runtime check to cast to type (StreamSubscription<dynamic>) → void (dart:async/ stream.dart, line 249, col 54)
266 for (SendPort port in doneHandlers) { 266 warning: [DownCastComposite] _cancelAndErrorClosure(subscription, result) (dynam ic) will need runtime check to cast to type (dynamic, StackTrace) → dynamic (dar t:async/stream.dart, line 502, col 24)
267 ^^^^^^^^^^^^ 267 warning: [DownCastComposite] _cancelAndErrorClosure(subscription, result) (dynam ic) will need runtime check to cast to type (dynamic, StackTrace) → dynamic (dar t:async/stream.dart, line 535, col 11)
268 warning: line 833, column 37 of dart:_isolate_helper: [DownCastComposite] args ( dynamic) will need runtime check to cast to type List<String> 268 warning: [DownCastComposite] _cancelAndErrorClosure(subscription, future) (dynam ic) will need runtime check to cast to type (dynamic, StackTrace) → dynamic (dar t:async/stream.dart, line 603, col 13)
269 _startIsolate(entryPoint, args, message, 269 warning: [DownCastComposite] _cancelAndErrorClosure(subscription, future) (dynam ic) will need runtime check to cast to type (dynamic, StackTrace) → dynamic (dar t:async/stream.dart, line 629, col 13)
270 ^^^^ 270 warning: [DownCastComposite] _cancelAndErrorClosure(subscription, future) (dynam ic) will need runtime check to cast to type (dynamic, StackTrace) → dynamic (dar t:async/stream.dart, line 658, col 13)
271 warning: line 880, column 11 of dart:_isolate_helper: [DownCastComposite] msg['a rgs'] (dynamic) will need runtime check to cast to type List<String> 271 warning: [DownCastComposite] _cancelAndErrorClosure(subscription, future) (dynam ic) will need runtime check to cast to type (dynamic, StackTrace) → dynamic (dar t:async/stream.dart, line 695, col 13)
272 msg['args'], msg['msg'], 272 warning: [DownCastComposite] _cancelAndErrorClosure(subscription, future) (dynam ic) will need runtime check to cast to type (dynamic, StackTrace) → dynamic (dar t:async/stream.dart, line 1037, col 11)
273 ^^^^^^^^^^^ 273 warning: [DownCastComposite] _cancelAndErrorClosure(subscription, future) (dynam ic) will need runtime check to cast to type (dynamic, StackTrace) → dynamic (dar t:async/stream.dart, line 1078, col 11)
274 warning: line 89, column 38 of dart:_isolate_helper/isolate_serialization.dart: [DownCastImplicit] indexable (JSIndexable) will need runtime check to cast to ty pe JSArray<dynamic> 274 warning: [DownCastComposite] _cancelAndErrorClosure(subscription, future) (dynam ic) will need runtime check to cast to type (dynamic, StackTrace) → dynamic (dar t:async/stream.dart, line 1130, col 11)
275 List serialized = serializeArray(indexable); 275 warning: [DownCastComposite] timeout (Function) will need runtime check to cast to type () → void (dart:async/stream.dart, line 1220, col 43)
276 ^^^^^^^^^ 276 warning: [DownCastComposite] timeout (Function) will need runtime check to cast to type () → void (dart:async/stream.dart, line 1228, col 43)
277 warning: line 120, column 24 of dart:_isolate_helper/isolate_serialization.dart: [DownCastImplicit] serializeTearOff (Function) will need runtime check to cast to type (dynamic) → dynamic 277 warning: [DownCastComposite] zone.registerUnaryCallback(onTimeout) ((dynamic) → dynamic) will need runtime check to cast to type (EventSink<dynamic>) → void (da rt:async/stream.dart, line 1246, col 21)
278 x.keys.map(serializeTearOff).toList(), 278 warning: [DownCastComposite] timeout (Function) will need runtime check to cast to type () → void (dart:async/stream.dart, line 1257, col 43)
279 ^^^^^^^^^^^^^^^^ 279 warning: [DownCastComposite] timeout (Function) will need runtime check to cast to type () → void (dart:async/stream.dart, line 1276, col 53)
280 warning: line 121, column 26 of dart:_isolate_helper/isolate_serialization.dart: [DownCastImplicit] serializeTearOff (Function) will need runtime check to cast to type (dynamic) → dynamic 280 warning: [DownCastComposite] sync ? new _NoCallbackSyncStreamController() : new _NoCallbackAsyncStreamController() (_StreamController<dynamic>) will need runtim e check to cast to type StreamController<T> (dart:async/stream_controller.dart, line 83, col 14)
281 x.values.map(serializeTearOff).toList()]; 281 warning: [DownCastComposite] subscription (_ControllerSubscription<dynamic>) wil l need runtime check to cast to type StreamSubscription<T> (dart:async/stream_co ntroller.dart, line 516, col 12)
282 ^^^^^^^^^^^^^^^^ 282 warning: [DownCastComposite] controller (_StreamController<dynamic>) will need r untime check to cast to type _EventSink<T> (dart:async/stream_controller.dart, l ine 798, col 15)
283 warning: line 172, column 52 of dart:_isolate_helper/isolate_serialization.dart: [DownCastImplicit] fields (List<dynamic>) will need runtime check to cast to ty pe JSArray<dynamic> 283 warning: [DownCastComposite] _nullDataHandler ((dynamic) → void) will need runti me check to cast to type (T) → void (dart:async/stream_impl.dart, line 153, col 42)
284 return ['dart', classId, serializeArrayInPlace(fields)]; 284 warning: [DownCastComposite] _zone.registerUnaryCallback(handleData) ((dynamic) → dynamic) will need runtime check to cast to type (T) → void (dart:async/stream _impl.dart, line 154, col 15)
285 ^^^^^^ 285 warning: [DownCastImplicit] _onError (Function) will need runtime check to cast to type (dynamic, dynamic) → dynamic (dart:async/stream_impl.dart, line 358, col 32)
286 warning: line 250, column 58 of dart:_isolate_helper/isolate_serialization.dart: [DownCastImplicit] result (List<dynamic>) will need runtime check to cast to ty pe JSArray<dynamic> 286 warning: [DownCastImplicit] _onError (Function) will need runtime check to cast to type (dynamic) → dynamic (dart:async/stream_impl.dart, line 360, col 31)
287 return new JSArray.markFixed(deserializeArrayInPlace(result)); 287 warning: [DownCastComposite] subscription (StreamSubscription<dynamic>) will nee d runtime check to cast to type StreamSubscription<T> (dart:async/stream_impl.da rt, line 476, col 12)
288 ^^^^^^ 288 warning: [DownCastComposite] new _BufferingStreamSubscription(onData, onError, o nDone, cancelOnError).._setPendingEvents(_pending()) (_BufferingStreamSubscripti on<dynamic>) will need runtime check to cast to type StreamSubscription<T> (dart :async/stream_impl.dart, line 515, col 12)
289 warning: line 258, column 61 of dart:_isolate_helper/isolate_serialization.dart: [DownCastImplicit] result (List<dynamic>) will need runtime check to cast to ty pe JSArray<dynamic> 289 warning: [DownCastComposite] Zone.current.registerUnaryCallback(onListenHandler) ((dynamic) → dynamic) will need runtime check to cast to type (StreamSubscripti on<dynamic>) → void (dart:async/stream_impl.dart, line 813, col 28)
290 return new JSArray.markGrowable(deserializeArrayInPlace(result)); 290 warning: [DownCastComposite] Zone.current.registerUnaryCallback(onCancelHandler) ((dynamic) → dynamic) will need runtime check to cast to type (StreamSubscripti on<dynamic>) → void (dart:async/stream_impl.dart, line 814, col 28)
291 ^^^^^^ 291 warning: [DownCastComposite] _futureOrPrefetch (dynamic) will need runtime check to cast to type Future<bool> (dart:async/stream_impl.dart, line 1000, col 14)
292 warning: line 266, column 36 of dart:_isolate_helper/isolate_serialization.dart: [DownCastImplicit] result (List<dynamic>) will need runtime check to cast to ty pe JSArray<dynamic> 292 warning: [DownCastComposite] _futureOrPrefetch (dynamic) will need runtime check to cast to type T (dart:async/stream_impl.dart, line 1006, col 22)
293 return deserializeArrayInPlace(result); 293 warning: [DownCastComposite] _futureOrPrefetch (dynamic) will need runtime check to cast to type _Future<bool> (dart:async/stream_impl.dart, line 1033, col 31)
294 ^^^^^^ 294 warning: [DownCastComposite] _futureOrPrefetch (dynamic) will need runtime check to cast to type _Future<bool> (dart:async/stream_impl.dart, line 1045, col 31)
295 warning: line 275, column 58 of dart:_isolate_helper/isolate_serialization.dart: [DownCastImplicit] result (List<dynamic>) will need runtime check to cast to ty pe JSArray<dynamic> 295 warning: [DownCastComposite] _futureOrPrefetch (dynamic) will need runtime check to cast to type _Future<bool> (dart:async/stream_impl.dart, line 1059, col 31)
296 return new JSArray.markFixed(deserializeArrayInPlace(result)); 296 warning: [DownCastComposite] _futureOrPrefetch (dynamic) will need runtime check to cast to type _Future<bool> (dart:async/stream_impl.dart, line 1073, col 31)
297 ^^^^^^ 297 warning: [DownCastComposite] outputData (dynamic) will need runtime check to cas t to type T (dart:async/stream_pipe.dart, line 104, col 15)
298 warning: line 357, column 29 of dart:_isolate_helper/isolate_serialization.dart: [DownCastImplicit] fields (List<dynamic>) will need runtime check to cast to ty pe JSArray<dynamic> 298 warning: [DownCastComposite] _transform(inputEvent) (dynamic) will need runtime check to cast to type T (dart:async/stream_pipe.dart, line 235, col 21)
299 deserializeArrayInPlace(fields); 299 warning: [DownCastComposite] _previous (Object) will need runtime check to cast to type T (dart:async/stream_pipe.dart, line 426, col 29)
300 ^^^^^^ 300 warning: [DownCastComposite] _sinkMapper ((EventSink<T>) → EventSink<S>) will ne ed runtime check to cast to type (EventSink<dynamic>) → EventSink<dynamic> (dart :async/stream_transformers.dart, line 187, col 18)
301 warning: line 20, column 39 of dart:async/async_error.dart: [DownCastImplicit] e rrorHandler (Function) will need runtime check to cast to type (dynamic) → dynam ic 301 warning: [UninferredClosure] (EventSink<T> outputSink) {if (handleData == null) handleData = _defaultHandleData; if (handleError == null) handleError = _default HandleError; if (handleDone == null) handleDone = _defaultHandleDone; return new _HandlerEventSink<S, T>(handleData, handleError, handleDone, outputSink);} ((Ev entSink<T>) → dynamic) will need runtime check to cast to type (EventSink<T>) → EventSink<S> (dart:async/stream_transformers.dart, line 233, col 15)
302 return zone.registerUnaryCallback(errorHandler); 302 warning: [DownCastComposite] _defaultHandleData ((dynamic, EventSink<dynamic>) → void) will need runtime check to cast to type (S, EventSink<T>) → void (dart:as ync/stream_transformers.dart, line 234, col 48)
303 ^^^^^^^^^^^^ 303 warning: [DownCastComposite] _defaultHandleError ((dynamic, StackTrace, EventSin k<dynamic>) → void) will need runtime check to cast to type (Object, StackTrace, EventSink<T>) → void (dart:async/stream_transformers.dart, line 235, col 50)
304 severe: line 208, column 22 of dart:async/broadcast_stream_controller.dart: [Ana lyzerMessage] The getter '_isFiring' is not defined for the class 'StreamSubscri ption<T>' 304 warning: [DownCastComposite] Zone.current.bindUnaryCallback(callback, runGuarded : true) ((dynamic) → dynamic) will need runtime check to cast to type (Timer) → void (dart:async/timer.dart, line 80, col 19)
305 if (subscription._isFiring) { 305 warning: [DownCastImplicit] implementationZone (Zone) will need runtime check to cast to type _Zone (dart:async/zone.dart, line 845, col 57)
306 ^^^^^^^^^ 306 warning: [DownCastComposite] zone.bindUnaryCallback(callback) ((dynamic) → dynam ic) will need runtime check to cast to type (Timer) → void (dart:async/zone.dart , line 962, col 16)
307 severe: line 206, column 32 of dart:async/broadcast_stream_controller.dart: [Ana lyzerMessage] The getter '_next' is not defined for the class 'StreamSubscriptio n<T>' 307 warning: [DownCastImplicit] zone (Zone) will need runtime check to cast to type _Zone (dart:async/zone.dart, line 999, col 26)
308 if (identical(subscription._next, subscription)) return null; 308 warning: [DownCastImplicit] onError (Function) will need runtime check to cast t o type (dynamic) → dynamic (dart:async/zone.dart, line 1228, col 37)
309 ^^^^^ 309 warning: [DownCastImplicit] key (Object) will need runtime check to cast to type String (dart:convert, line 176, col 45)
310 severe: line 207, column 36 of dart:async/broadcast_stream_controller.dart: [Ana lyzerMessage] The getter '_next' is not defined for the class 'StreamSubscriptio n<T>' 310 warning: [DownCastImplicit] key (Object) will need runtime check to cast to type String (dart:convert, line 177, col 53)
311 assert(!identical(subscription._next, subscription)); 311 warning: [DownCastImplicit] key (Object) will need runtime check to cast to type String (dart:convert, line 233, col 36)
312 ^^^^^ 312 warning: [DownCastComposite] JS('JSExtendableArray', '#', keys) (dynamic) will n eed runtime check to cast to type List<String> (dart:convert, line 311, col 12)
313 severe: line 209, column 20 of dart:async/broadcast_stream_controller.dart: [Ana lyzerMessage] The method '_setRemoveAfterFiring' is not defined for the class 'S treamSubscription<T>' 313 warning: [DownCastComposite] result (List<dynamic>) will need runtime check to c ast to type List<int> (dart:convert/ascii.dart, line 96, col 12)
314 subscription._setRemoveAfterFiring(); 314 warning: [DownCastImplicit] sink (Sink<List<int>>) will need runtime check to ca st to type ByteConversionSink (dart:convert/ascii.dart, line 109, col 55)
315 ^^^^^^^^^^^^^^^^^^^^^ 315 warning: [DownCastComposite] _first.encoder.fuse(_second.encoder) (Converter<S, dynamic>) will need runtime check to cast to type Converter<S, T> (dart:convert/ codec.dart, line 87, col 34)
316 severe: line 211, column 38 of dart:async/broadcast_stream_controller.dart: [Ana lyzerMessage] The getter '_next' is not defined for the class 'StreamSubscriptio n<T>' 316 warning: [DownCastComposite] _second.decoder.fuse(_first.decoder) (Converter<T, dynamic>) will need runtime check to cast to type Converter<T, S> (dart:convert/ codec.dart, line 88, col 34)
317 assert(!identical(subscription._next, subscription)); 317 warning: [DownCastComposite] _second.convert(_first.convert(input)) (dynamic) wi ll need runtime check to cast to type T (dart:convert/converter.dart, line 58, c ol 25)
318 ^^^^^ 318 warning: [DownCastComposite] byteStream.transform(decoder).fold(new StringBuffer (), (buffer, string) => buffer..write(string)).then((buffer) => buffer.toString( )) (Future<dynamic>) will need runtime check to cast to type Future<String> (dar t:convert/encoding.dart, line 14, col 12)
319 warning: line 8, column 67 of dart:async/broadcast_stream_controller.dart: [Down CastComposite] controller (_StreamControllerLifecycle<dynamic>) will need runtim e check to cast to type _StreamControllerLifecycle<T> 319 warning: [DownCastImplicit] sink (Sink<String>) will need runtime check to cast to type StringConversionSink (dart:convert/html_escape.dart, line 79, col 38)
320 _BroadcastStream(_StreamControllerLifecycle controller) : super(controller); 320 warning: [DownCastComposite] toEncodable ((dynamic) → dynamic) will need runtime check to cast to type (Object) → Object (dart:convert/json.dart, line 142, col 28)
321 ^^^^^^^^^^ 321 warning: [DownCastComposite] _toEncodable ((dynamic) → dynamic) will need runtim e check to cast to type (Object) → Object (dart:convert/json.dart, line 147, col 28)
322 warning: line 36, column 15 of dart:async/broadcast_stream_controller.dart: [Dow nCastComposite] controller (_StreamControllerLifecycle<dynamic>) will need runti me check to cast to type _StreamControllerLifecycle<T> 322 warning: [DownCastImplicit] _toEncodable (Function) will need runtime check to c ast to type (dynamic) → dynamic (dart:convert/json.dart, line 243, col 48)
323 : super(controller, onData, onError, onDone, cancelOnError) { 323 warning: [DownCastImplicit] sink (Sink<String>) will need runtime check to cast to type StringConversionSink (dart:convert/json.dart, line 262, col 33)
324 ^^^^^^^^^^ 324 warning: [DownCastComposite] _toEncodable (Function) will need runtime check to cast to type (Object) → dynamic (dart:convert/json.dart, line 270, col 42)
325 warning: line 40, column 52 of dart:async/broadcast_stream_controller.dart: [Dow nCastComposite] super._controller (_StreamControllerLifecycle<T>) will need runt ime check to cast to type _BroadcastStreamController<T> 325 warning: [DownCastComposite] _toEncodable (Function) will need runtime check to cast to type (Object) → dynamic (dart:convert/json.dart, line 352, col 36)
326 _BroadcastStreamController<T> get _controller => super._controller; 326 warning: [DownCastImplicit] _toEncodable (Function) will need runtime check to c ast to type (dynamic) → dynamic (dart:convert/json.dart, line 425, col 51)
327 ^^^^^^^^^^^^^^^^^ 327 warning: [DownCastComposite] _toEncodable (Function) will need runtime check to cast to type (Object) → dynamic (dart:convert/json.dart, line 455, col 53)
328 warning: line 196, column 18 of dart:async/broadcast_stream_controller.dart: [Do wnCastComposite] subscription (StreamSubscription<dynamic>) will need runtime ch eck to cast to type _BroadcastSubscription<T> 328 warning: [DownCastComposite] object (dynamic) will need runtime check to cast to type Map<String, Object> (dart:convert/json.dart, line 715, col 16)
329 _addListener(subscription); 329 warning: [DownCastComposite] _toEncodable (dynamic) will need runtime check to c ast to type (Object) → Object (dart:convert/json.dart, line 817, col 60)
330 ^^^^^^^^^^^^ 330 warning: [DownCastComposite] toEncodable (dynamic) will need runtime check to ca st to type (Object) → Object (dart:convert/json.dart, line 895, col 15)
331 warning: line 201, column 12 of dart:async/broadcast_stream_controller.dart: [Do wnCastComposite] subscription (StreamSubscription<dynamic>) will need runtime ch eck to cast to type StreamSubscription<T> 331 warning: [DownCastComposite] sink (Sink<dynamic>) will need runtime check to cas t to type Sink<String> (dart:convert/line_splitter.dart, line 24, col 44)
332 return subscription; 332 warning: [DownCastImplicit] sink (Sink<dynamic>) will need runtime check to cast to type StringConversionSink (dart:convert/line_splitter.dart, line 26, col 34)
333 ^^^^^^^^^^^^ 333 warning: [DownCastImplicit] sink (Sink<List<int>>) will need runtime check to ca st to type ByteConversionSink (dart:convert/utf.dart, line 125, col 33)
334 warning: line 212, column 23 of dart:async/broadcast_stream_controller.dart: [Do wnCastComposite] subscription (StreamSubscription<T>) will need runtime check to cast to type _BroadcastSubscription<T> 334 warning: [DownCastImplicit] symbol (Symbol) will need runtime check to cast to t ype Symbol (dart:core, line 206, col 69)
335 _removeListener(subscription); 335 warning: [DownCastImplicit] Primitives.dateNow() (num) will need runtime check t o cast to type int (dart:core/date_time.dart, line 593, col 34)
336 ^^^^^^^^^^^^ 336 warning: [DownCastImplicit] inMinutes.remainder(MINUTES_PER_HOUR) (num) will nee d runtime check to cast to type int (dart:core/duration.dart, line 258, col 40)
337 warning: line 309, column 48 of dart:async/broadcast_stream_controller.dart: [Do wnCastComposite] link (_BroadcastSubscriptionLink) will need runtime check to ca st to type _BroadcastSubscription<T> 337 warning: [DownCastImplicit] inSeconds.remainder(SECONDS_PER_MINUTE) (num) will n eed runtime check to cast to type int (dart:core/duration.dart, line 259, col 40 )
338 _BroadcastSubscription<T> subscription = link; 338 warning: [DownCastImplicit] inMicroseconds.remainder(MICROSECONDS_PER_SECOND) (n um) will need runtime check to cast to type int (dart:core/duration.dart, line 2 61, col 19)
339 ^^^^ 339 warning: [DownCastComposite] (generator != null) ? generator : _id (Function) wi ll need runtime check to cast to type (int) → E (dart:core/iterable.dart, line 3 19, col 22)
340 warning: line 372, column 24 of dart:async/broadcast_stream_controller.dart: [Un inferredClosure] (_BroadcastSubscription<T> subscription) {subscription._close() ;} ((_BroadcastSubscription<T>) → dynamic) will need runtime check to cast to ty pe (_BufferingStreamSubscription<T>) → void 340 warning: [DownCastComposite] e (dynamic) will need runtime check to cast to type E (dart:core/list.dart, line 121, col 16)
341 _forEachListener((_BroadcastSubscription<T> subscription) { 341 warning: [DownCastComposite] makeListFixedLength(list) (List<dynamic>) will need runtime check to cast to type List<E> (dart:core/list.dart, line 124, col 12)
342 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 342 warning: [DownCastImplicit] (_stop == null) ? (_now() - _start) : (_stop - _star t) (num) will need runtime check to cast to type int (dart:core/stopwatch.dart, line 102, col 12)
343 warning: line 393, column 48 of dart:async/broadcast_stream_controller.dart: [Do wnCastComposite] link (_BroadcastSubscriptionLink) will need runtime check to ca st to type _BroadcastSubscription<T> 343 warning: [DownCastImplicit] _currentCodePoint (num) will need runtime check to c ast to type int (dart:core/string.dart, line 753, col 22)
344 _BroadcastSubscription<T> subscription = link; 344 warning: [DownCastImplicit] _port (num) will need runtime check to cast to type int (dart:core/uri.dart, line 94, col 12)
345 ^^^^ 345 warning: [DownCastImplicit] this._port (num) will need runtime check to cast to type int (dart:core/uri.dart, line 893, col 14)
346 warning: line 402, column 48 of dart:async/broadcast_stream_controller.dart: [Do wnCastComposite] link (_BroadcastSubscriptionLink) will need runtime check to ca st to type _BroadcastSubscription<T> 346 warning: [DownCastComposite] _userinfoTable (List<dynamic>) will need runtime ch eck to cast to type List<int> (dart:core/uri.dart, line 1131, col 45)
347 _BroadcastSubscription<T> subscription = link; 347 warning: [DownCastComposite] _pathCharOrSlashTable (List<dynamic>) will need run time check to cast to type List<int> (dart:core/uri.dart, line 1144, col 45)
348 ^^^^ 348 warning: [DownCastComposite] _pathCharTable (List<dynamic>) will need runtime ch eck to cast to type List<int> (dart:core/uri.dart, line 1146, col 51)
349 warning: line 412, column 50 of dart:async/broadcast_stream_controller.dart: [Do wnCastComposite] link (_BroadcastSubscriptionLink) will need runtime check to ca st to type _BroadcastSubscription<T> 349 warning: [DownCastComposite] _queryCharTable (List<dynamic>) will need runtime c heck to cast to type List<int> (dart:core/uri.dart, line 1163, col 61)
350 _BroadcastSubscription<T> subscription = link; 350 warning: [DownCastComposite] _queryCharTable (List<dynamic>) will need runtime c heck to cast to type List<int> (dart:core/uri.dart, line 1183, col 45)
351 ^^^^ 351 warning: [DownCastComposite] codeUnits (List<dynamic>) will need runtime check t o cast to type Iterable<int> (dart:core/uri.dart, line 1278, col 37)
352 warning: line 123, column 12 of dart:async/future.dart: [DownCastComposite] resu lt (_Future<dynamic>) will need runtime check to cast to type Future<T> 352 warning: [DownCastImplicit] this._port (num) will need runtime check to cast to type int (dart:core/uri.dart, line 1494, col 22)
353 return result; 353 warning: [DownCastComposite] _unreserved2396Table (List<dynamic>) will need runt ime check to cast to type List<int> (dart:core/uri.dart, line 1754, col 23)
354 ^^^^^^ 354 warning: [DownCastComposite] _unreservedTable (List<dynamic>) will need runtime check to cast to type List<int> (dart:core/uri.dart, line 1793, col 9)
355 warning: line 149, column 12 of dart:async/future.dart: [DownCastComposite] resu lt (_Future<dynamic>) will need runtime check to cast to type Future<T> 355 warning: [DownCastComposite] _encodeFullTable (List<dynamic>) will need runtime check to cast to type List<int> (dart:core/uri.dart, line 1837, col 23)
356 return result; 356 warning: [DownCastComposite] query.split("&").fold({}, (map, element) {int index = element.indexOf("="); if (index == -1) {if (element != "") {map[decodeQueryCo mponent(element, encoding: encoding)] = "";}} else if (index != 0) {var key = el ement.substring(0, index); var value = element.substring(index + 1); map[Uri.dec odeQueryComponent(key, encoding: encoding)] = decodeQueryComponent(value, encodi ng: encoding);} return map;}) (dynamic) will need runtime check to cast to type Map<String, String> (dart:core/uri.dart, line 1869, col 12)
357 ^^^^^^ 357 warning: [DownCastComposite] bytes.map((byteString) {int byte = int.parse(byteSt ring); if (byte < 0 || byte > 255) {error('each part must be in the range of `0. .255`');} return byte;}).toList() (List<dynamic>) will need runtime check to cas t to type List<int> (dart:core/uri.dart, line 1901, col 12)
358 warning: line 233, column 12 of dart:async/future.dart: [DownCastComposite] resu lt (_Future<dynamic>) will need runtime check to cast to type Future<T> 358 warning: [DownCastComposite] bytes (List<dynamic>) will need runtime check to ca st to type List<int> (dart:core/uri.dart, line 2023, col 12)
359 return result; 359 warning: [DownCastImplicit] JS('num', r'parseInt(#, 16)', source) (num) will nee d runtime check to cast to type int (dart:_js_helper, line 87, col 18)
360 ^^^^^^ 360 warning: [DownCastImplicit] JS('num', r'parseInt(#, 10)', source) (num) will nee d runtime check to cast to type int (dart:_js_helper, line 91, col 18)
361 warning: line 112, column 12 of dart:async/future_impl.dart: [DownCastImplicit] callback (Function) will need runtime check to cast to type (dynamic) → dynamic 361 warning: [DownCastImplicit] JS('num', r'parseInt(#, 10)', source) (num) will nee d runtime check to cast to type int (dart:_js_helper, line 103, col 18)
362 return callback; 362 warning: [DownCastImplicit] JS('num', r'parseInt(#, #)', source, radix) (num) wi ll need runtime check to cast to type int (dart:_js_helper, line 135, col 12)
363 ^^^^^^^^ 363 warning: [DownCastImplicit] result (num) will need runtime check to cast to type double (dart:_js_helper, line 159, col 16)
364 warning: line 117, column 12 of dart:async/future_impl.dart: [DownCastComposite] callback (Function) will need runtime check to cast to type (dynamic) → bool 364 warning: [DownCastImplicit] result (num) will need runtime check to cast to type double (dart:_js_helper, line 163, col 12)
365 return callback; 365 warning: [DownCastImplicit] 0xd800 + ((((i - 0x10000) >> 10) & 0x3ff)) (num) wil l need runtime check to cast to type int (dart:_js_helper, line 250, col 15)
366 ^^^^^^^^ 366 warning: [DownCastImplicit] 0xdc00 + (i & 0x3ff) (num) will need runtime check t o cast to type int (dart:_js_helper, line 251, col 15)
367 warning: line 121, column 12 of dart:async/future_impl.dart: [DownCastImplicit] callback (Function) will need runtime check to cast to type () → dynamic 367 warning: [DownCastComposite] charCodes (dynamic) will need runtime check to cast to type List<int> (dart:_js_helper, line 265, col 31)
368 return callback; 368 warning: [DownCastComposite] JS('JSExtendableArray|Null', r'#.exec(#)', _nativeR egExp, checkString(string)) (dynamic) will need runtime check to cast to type Li st<String> (dart:_js_helper/regexp_helper.dart, line 108, col 22)
369 ^^^^^^^^ 369 warning: [DownCastComposite] match (List<dynamic>) will need runtime check to ca st to type List<String> (dart:_js_helper/regexp_helper.dart, line 140, col 43)
370 warning: line 208, column 11 of dart:async/future_impl.dart: [DownCastComposite] result._zone.registerUnaryCallback(f) ((dynamic) → dynamic) will need runtime c heck to cast to type (T) → dynamic 370 warning: [DownCastComposite] match (List<dynamic>) will need runtime check to ca st to type List<String> (dart:_js_helper/regexp_helper.dart, line 152, col 43)
371 f = result._zone.registerUnaryCallback(f); 371 warning: [DownCastComposite] pattern.allMatches(receiver) (dynamic) will need ru ntime check to cast to type Iterable<Match> (dart:_js_helper/string_helper.dart, line 137, col 23)
372 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 372 warning: [DownCastComposite] _convertToJS ((dynamic) → dynamic) will need runtim e check to cast to type (E) → dynamic (dart:js, line 325, col 44)
373 warning: line 221, column 32 of dart:async/future_impl.dart: [DownCastComposite] result._zone.registerUnaryCallback(test) ((dynamic) → dynamic) will need runtim e check to cast to type (dynamic) → bool 373 warning: [DownCastComposite] super[index] (dynamic) will need runtime check to c ast to type E (dart:js, line 358, col 12)
374 if (test != null) test = result._zone.registerUnaryCallback(test); 374 warning: [DownCastImplicit] list (Object) will need runtime check to cast to typ e List<dynamic> (dart:js, line 394, col 24)
375 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 375 warning: [DownCastComposite] callMethod('splice', [index, 1])[0] (dynamic) will need runtime check to cast to type E (dart:js, line 404, col 12)
376 warning: line 233, column 12 of dart:async/future_impl.dart: [DownCastComposite] result (_Future<dynamic>) will need runtime check to cast to type Future<T> 376 warning: [DownCastComposite] callMethod('pop') (dynamic) will need runtime check to cast to type E (dart:js, line 409, col 12)
377 return result; 377 warning: [DownCastImplicit] ms (num) will need runtime check to cast to type int (dart:js, line 486, col 52)
378 ^^^^^^ 378 severe: [AnalyzerMessage] Missing concrete implementation of getter 'TypeMirror. typeArguments', getter 'TypeMirror.isOriginalDeclaration', getter 'DeclarationMi rror.owner', getter 'DeclarationMirror.location' and 10 more (dart:_js_mirrors, line 120, col 7)
379 warning: line 245, column 12 of dart:async/future_impl.dart: [DownCastComposite] _resultOrListeners (dynamic) will need runtime check to cast to type T 379 severe: [AnalyzerMessage] Missing concrete implementation of getter 'InstanceMir ror.type', getter 'InstanceMirror.hasReflectee' and 'InstanceMirror.delegate' (d art:_js_mirrors, line 47, col 7)
380 return _resultOrListeners; 380 severe: [AnalyzerMessage] Missing concrete implementation of getter 'VariableMir ror.isStatic', getter 'VariableMirror.isFinal', getter 'DeclarationMirror.owner' , getter 'ParameterMirror.isOptional' and 9 more (dart:_js_mirrors, line 126, co l 7)
381 ^^^^^^^^^^^^^^^^^^ 381 severe: [AnalyzerMessage] Missing concrete implementation of getter 'TypeMirror. typeArguments', getter 'ClassMirror.superinterfaces', getter 'TypeMirror.isOrigi nalDeclaration', getter 'ClassMirror.staticMembers' and 19 more (dart:_js_mirror s, line 84, col 7)
382 warning: line 347, column 17 of dart:async/future_impl.dart: [DownCastComposite] value (dynamic) will need runtime check to cast to type T 382 severe: [AnalyzerMessage] Missing concrete implementation of getter 'MethodMirro r.isSetter', getter 'MethodMirror.isConstructor', getter 'MethodMirror.isConstCo nstructor', getter 'MethodMirror.isAbstract' and 17 more (dart:_js_mirrors, line 134, col 7)
383 _setValue(value); 383 severe: [AnalyzerMessage] The argument type 'void' cannot be assigned to the par ameter type 'Object' (dart:_js_mirrors, line 61, col 35)
384 ^^^^^ 384 warning: [DownCastImplicit] (tm as ClassMirror).originalDeclaration (TypeMirror) will need runtime check to cast to type ClassMirror (dart:mirrors, line 171, co l 10)
385 warning: line 357, column 15 of dart:async/future_impl.dart: [DownCastComposite] value (dynamic) will need runtime check to cast to type T
386 _setValue(value);
387 ^^^^^
388 warning: line 386, column 31 of dart:async/future_impl.dart: [DownCastComposite] value (dynamic) will need runtime check to cast to type Future<T>
389 Future<T> typedFuture = value;
390 ^^^^^
391 warning: line 388, column 33 of dart:async/future_impl.dart: [DownCastComposite] typedFuture (Future<T>) will need runtime check to cast to type _Future<T>
392 _Future<T> coreFuture = typedFuture;
393 ^^^^^^^^^^^
394 warning: line 407, column 22 of dart:async/future_impl.dart: [DownCastComposite] value (dynamic) will need runtime check to cast to type T
395 T typedValue = value;
396 ^^^^^
397 warning: line 515, column 54 of dart:async/future_impl.dart: [DownCastImplicit] errorCallback (Function) will need runtime check to cast to type (dynamic) → dyn amic
398 listenerValueOrError = zone.runUnary(errorCallback,
399 ^^^^^^^^^^^^^
400 warning: line 66, column 61 of dart:async/schedule_microtask.dart: [DownCastComp osite] callback (dynamic) will need runtime check to cast to type () → void
401 _nextCallback = _lastCallback = new _AsyncCallbackEntry(callback);
402 ^^^^^^^^
403 warning: line 71, column 60 of dart:async/schedule_microtask.dart: [DownCastComp osite] callback (dynamic) will need runtime check to cast to type () → void
404 _AsyncCallbackEntry newEntry = new _AsyncCallbackEntry(callback);
405 ^^^^^^^^
406 warning: line 84, column 55 of dart:async/schedule_microtask.dart: [DownCastComp osite] callback (dynamic) will need runtime check to cast to type () → void
407 _AsyncCallbackEntry entry = new _AsyncCallbackEntry(callback);
408 ^^^^^^^^
409 severe: line 321, column 34 of dart:async/stream.dart: [AnalyzerMessage] The get ter '_addError' is not defined for the class 'StreamController'
410 final addError = eventSink._addError;
411 ^^^^^^^^^
412 severe: line 1227, column 17 of dart:async/stream.dart: [AnalyzerMessage] The me thod '_addError' is not defined for the class 'StreamController'
413 eventSink._addError(error, stackTrace); // Avoid Zone error replacement.
414 ^^^^^^^^^
415 severe: line 396, column 30 of dart:async/stream.dart: [AnalyzerMessage] The get ter '_addError' is not defined for the class 'StreamController'
416 onError: eventSink._addError, // Avoid Zone error replacement.
417 ^^^^^^^^^
418 warning: line 90, column 25 of dart:async/stream.dart: [DownCastComposite] value (dynamic) will need runtime check to cast to type T
419 controller._add(value);
420 ^^^^^
421 warning: line 217, column 41 of dart:async/stream.dart: [DownCastComposite] mapS ink ((EventSink<T>) → EventSink<dynamic>) will need runtime check to cast to typ e (EventSink<dynamic>) → EventSink<dynamic>
422 return new _BoundSinkStream(source, mapSink);
423 ^^^^^^^
424 warning: line 249, column 44 of dart:async/stream.dart: [DownCastComposite] onLi sten ((StreamSubscription<T>) → void) will need runtime check to cast to type (S treamSubscription<dynamic>) → void
425 return new _AsBroadcastStream<T>(this, onListen, onCancel);
426 ^^^^^^^^
427 warning: line 249, column 54 of dart:async/stream.dart: [DownCastComposite] onCa ncel ((StreamSubscription<T>) → void) will need runtime check to cast to type (S treamSubscription<dynamic>) → void
428 return new _AsBroadcastStream<T>(this, onListen, onCancel);
429 ^^^^^^^^
430 warning: line 502, column 24 of dart:async/stream.dart: [DownCastComposite] _can celAndErrorClosure(subscription, result) (dynamic) will need runtime check to ca st to type (dynamic, StackTrace) → dynamic
431 _cancelAndErrorClosure(subscription, result));
432 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
433 warning: line 535, column 11 of dart:async/stream.dart: [DownCastComposite] _can celAndErrorClosure(subscription, result) (dynamic) will need runtime check to ca st to type (dynamic, StackTrace) → dynamic
434 _cancelAndErrorClosure(subscription, result)
435 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
436 warning: line 603, column 13 of dart:async/stream.dart: [DownCastComposite] _can celAndErrorClosure(subscription, future) (dynamic) will need runtime check to ca st to type (dynamic, StackTrace) → dynamic
437 _cancelAndErrorClosure(subscription, future)
438 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
439 warning: line 629, column 13 of dart:async/stream.dart: [DownCastComposite] _can celAndErrorClosure(subscription, future) (dynamic) will need runtime check to ca st to type (dynamic, StackTrace) → dynamic
440 _cancelAndErrorClosure(subscription, future)
441 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
442 warning: line 658, column 13 of dart:async/stream.dart: [DownCastComposite] _can celAndErrorClosure(subscription, future) (dynamic) will need runtime check to ca st to type (dynamic, StackTrace) → dynamic
443 _cancelAndErrorClosure(subscription, future)
444 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
445 warning: line 695, column 13 of dart:async/stream.dart: [DownCastComposite] _can celAndErrorClosure(subscription, future) (dynamic) will need runtime check to ca st to type (dynamic, StackTrace) → dynamic
446 _cancelAndErrorClosure(subscription, future)
447 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
448 warning: line 1037, column 11 of dart:async/stream.dart: [DownCastComposite] _ca ncelAndErrorClosure(subscription, future) (dynamic) will need runtime check to c ast to type (dynamic, StackTrace) → dynamic
449 _cancelAndErrorClosure(subscription, future)
450 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
451 warning: line 1078, column 11 of dart:async/stream.dart: [DownCastComposite] _ca ncelAndErrorClosure(subscription, future) (dynamic) will need runtime check to c ast to type (dynamic, StackTrace) → dynamic
452 _cancelAndErrorClosure(subscription, future)
453 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
454 warning: line 1130, column 11 of dart:async/stream.dart: [DownCastComposite] _ca ncelAndErrorClosure(subscription, future) (dynamic) will need runtime check to c ast to type (dynamic, StackTrace) → dynamic
455 _cancelAndErrorClosure(subscription, future)
456 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
457 warning: line 1220, column 43 of dart:async/stream.dart: [DownCastComposite] tim eout (Function) will need runtime check to cast to type () → void
458 timer = zone.createTimer(timeLimit, timeout);
459 ^^^^^^^
460 warning: line 1228, column 43 of dart:async/stream.dart: [DownCastComposite] tim eout (Function) will need runtime check to cast to type () → void
461 timer = zone.createTimer(timeLimit, timeout);
462 ^^^^^^^
463 warning: line 1246, column 21 of dart:async/stream.dart: [DownCastComposite] zon e.registerUnaryCallback(onTimeout) ((dynamic) → dynamic) will need runtime check to cast to type (EventSink<dynamic>) → void
464 onTimeout = zone.registerUnaryCallback(onTimeout);
465 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
466 warning: line 1257, column 43 of dart:async/stream.dart: [DownCastComposite] tim eout (Function) will need runtime check to cast to type () → void
467 timer = zone.createTimer(timeLimit, timeout);
468 ^^^^^^^
469 warning: line 1276, column 53 of dart:async/stream.dart: [DownCastComposite] tim eout (Function) will need runtime check to cast to type () → void
470 timer = zone.createTimer(timeLimit, timeout);
471 ^^^^^^^
472 warning: line 83, column 14 of dart:async/stream_controller.dart: [DownCastCompo site] sync ? new _NoCallbackSyncStreamController() : new _NoCallbackAsyncStreamC ontroller() (_StreamController<dynamic>) will need runtime check to cast to type StreamController<T>
473 return sync
474 ^^^^^
475 warning: line 516, column 12 of dart:async/stream_controller.dart: [DownCastComp osite] subscription (_ControllerSubscription<dynamic>) will need runtime check t o cast to type StreamSubscription<T>
476 return subscription;
477 ^^^^^^^^^^^^
478 warning: line 798, column 15 of dart:async/stream_controller.dart: [DownCastComp osite] controller (_StreamController<dynamic>) will need runtime check to cast t o type _EventSink<T>
479 : super(controller, source, cancelOnError) {
480 ^^^^^^^^^^
481 warning: line 153, column 42 of dart:async/stream_impl.dart: [DownCastComposite] _nullDataHandler ((dynamic) → void) will need runtime check to cast to type (T) → void
482 if (handleData == null) handleData = _nullDataHandler;
483 ^^^^^^^^^^^^^^^^
484 warning: line 154, column 15 of dart:async/stream_impl.dart: [DownCastComposite] _zone.registerUnaryCallback(handleData) ((dynamic) → dynamic) will need runtime check to cast to type (T) → void
485 _onData = _zone.registerUnaryCallback(handleData);
486 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
487 warning: line 358, column 32 of dart:async/stream_impl.dart: [DownCastImplicit] _onError (Function) will need runtime check to cast to type (dynamic, dynamic) → dynamic
488 _zone.runBinaryGuarded(_onError, error, stackTrace);
489 ^^^^^^^^
490 warning: line 360, column 31 of dart:async/stream_impl.dart: [DownCastImplicit] _onError (Function) will need runtime check to cast to type (dynamic) → dynamic
491 _zone.runUnaryGuarded(_onError, error);
492 ^^^^^^^^
493 warning: line 476, column 12 of dart:async/stream_impl.dart: [DownCastComposite] subscription (StreamSubscription<dynamic>) will need runtime check to cast to t ype StreamSubscription<T>
494 return subscription;
495 ^^^^^^^^^^^^
496 warning: line 515, column 12 of dart:async/stream_impl.dart: [DownCastComposite] new _BufferingStreamSubscription(onData, onError, onDone, cancelOnError).._setP endingEvents(_pending()) (_BufferingStreamSubscription<dynamic>) will need runti me check to cast to type StreamSubscription<T>
497 return new _BufferingStreamSubscription(
498 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
499 warning: line 813, column 28 of dart:async/stream_impl.dart: [DownCastComposite] Zone.current.registerUnaryCallback(onListenHandler) ((dynamic) → dynamic) will need runtime check to cast to type (StreamSubscription<dynamic>) → void
500 : _onListenHandler = Zone.current.registerUnaryCallback(onListenHandler),
501 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
502 warning: line 814, column 28 of dart:async/stream_impl.dart: [DownCastComposite] Zone.current.registerUnaryCallback(onCancelHandler) ((dynamic) → dynamic) will need runtime check to cast to type (StreamSubscription<dynamic>) → void
503 _onCancelHandler = Zone.current.registerUnaryCallback(onCancelHandler),
504 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
505 warning: line 1000, column 14 of dart:async/stream_impl.dart: [DownCastComposite ] _futureOrPrefetch (dynamic) will need runtime check to cast to type Future<boo l>
506 return _futureOrPrefetch;
507 ^^^^^^^^^^^^^^^^^
508 warning: line 1006, column 22 of dart:async/stream_impl.dart: [DownCastComposite ] _futureOrPrefetch (dynamic) will need runtime check to cast to type T
509 _current = _futureOrPrefetch;
510 ^^^^^^^^^^^^^^^^^
511 warning: line 1033, column 31 of dart:async/stream_impl.dart: [DownCastComposite ] _futureOrPrefetch (dynamic) will need runtime check to cast to type _Future<bo ol>
512 _Future<bool> hasNext = _futureOrPrefetch;
513 ^^^^^^^^^^^^^^^^^
514 warning: line 1045, column 31 of dart:async/stream_impl.dart: [DownCastComposite ] _futureOrPrefetch (dynamic) will need runtime check to cast to type _Future<bo ol>
515 _Future<bool> hasNext = _futureOrPrefetch;
516 ^^^^^^^^^^^^^^^^^
517 warning: line 1059, column 31 of dart:async/stream_impl.dart: [DownCastComposite ] _futureOrPrefetch (dynamic) will need runtime check to cast to type _Future<bo ol>
518 _Future<bool> hasNext = _futureOrPrefetch;
519 ^^^^^^^^^^^^^^^^^
520 warning: line 1073, column 31 of dart:async/stream_impl.dart: [DownCastComposite ] _futureOrPrefetch (dynamic) will need runtime check to cast to type _Future<bo ol>
521 _Future<bool> hasNext = _futureOrPrefetch;
522 ^^^^^^^^^^^^^^^^^
523 warning: line 104, column 15 of dart:async/stream_pipe.dart: [DownCastComposite] outputData (dynamic) will need runtime check to cast to type T
524 sink._add(outputData);
525 ^^^^^^^^^^
526 warning: line 235, column 21 of dart:async/stream_pipe.dart: [DownCastComposite] _transform(inputEvent) (dynamic) will need runtime check to cast to type T
527 outputEvent = _transform(inputEvent);
528 ^^^^^^^^^^^^^^^^^^^^^^
529 warning: line 426, column 29 of dart:async/stream_pipe.dart: [DownCastComposite] _previous (Object) will need runtime check to cast to type T
530 isEqual = _equals(_previous, inputEvent);
531 ^^^^^^^^^
532 warning: line 187, column 18 of dart:async/stream_transformers.dart: [DownCastCo mposite] _sinkMapper ((EventSink<T>) → EventSink<S>) will need runtime check to cast to type (EventSink<dynamic>) → EventSink<dynamic>
533 _stream, _sinkMapper, onData, onError, onDone, cancelOnError);
534 ^^^^^^^^^^^
535 warning: line 233, column 15 of dart:async/stream_transformers.dart: [Uninferred Closure] (EventSink<T> outputSink) {if (handleData == null) handleData = _defaul tHandleData; if (handleError == null) handleError = _defaultHandleError; if (han dleDone == null) handleDone = _defaultHandleDone; return new _HandlerEventSink<S , T>(handleData, handleError, handleDone, outputSink);} ((EventSink<T>) → dynami c) will need runtime check to cast to type (EventSink<T>) → EventSink<S>
536 : super((EventSink<T> outputSink) {
537 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
538 warning: line 234, column 48 of dart:async/stream_transformers.dart: [DownCastCo mposite] _defaultHandleData ((dynamic, EventSink<dynamic>) → void) will need run time check to cast to type (S, EventSink<T>) → void
539 if (handleData == null) handleData = _defaultHandleData;
540 ^^^^^^^^^^^^^^^^^^
541 warning: line 235, column 50 of dart:async/stream_transformers.dart: [DownCastCo mposite] _defaultHandleError ((dynamic, StackTrace, EventSink<dynamic>) → void) will need runtime check to cast to type (Object, StackTrace, EventSink<T>) → voi d
542 if (handleError == null) handleError = _defaultHandleError;
543 ^^^^^^^^^^^^^^^^^^^
544 warning: line 80, column 19 of dart:async/timer.dart: [DownCastComposite] Zone.c urrent.bindUnaryCallback(callback, runGuarded: true) ((dynamic) → dynamic) will need runtime check to cast to type (Timer) → void
545 duration, Zone.current.bindUnaryCallback(callback, runGuarded: true));
546 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
547 warning: line 845, column 57 of dart:async/zone.dart: [DownCastImplicit] impleme ntationZone (Zone) will need runtime check to cast to type _Zone
548 final ZoneDelegate parentDelegate = _parentDelegate(implementationZone);
549 ^^^^^^^^^^^^^^^^^^
550 warning: line 962, column 16 of dart:async/zone.dart: [DownCastComposite] zone.b indUnaryCallback(callback) ((dynamic) → dynamic) will need runtime check to cast to type (Timer) → void
551 callback = zone.bindUnaryCallback(callback);
552 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
553 warning: line 999, column 26 of dart:async/zone.dart: [DownCastImplicit] zone (Z one) will need runtime check to cast to type _Zone
554 return new _CustomZone(zone, specification, valueMap);
555 ^^^^
556 warning: line 1228, column 37 of dart:async/zone.dart: [DownCastImplicit] onErro r (Function) will need runtime check to cast to type (dynamic) → dynamic
557 return self.parent.runUnary(onError, error);
558 ^^^^^^^
559 warning: line 176, column 45 of dart:convert: [DownCastImplicit] key (Object) wi ll need runtime check to cast to type String
560 var result = _getProperty(_processed, key);
561 ^^^
562 warning: line 177, column 53 of dart:convert: [DownCastImplicit] key (Object) wi ll need runtime check to cast to type String
563 if (_isUnprocessed(result)) result = _process(key);
564 ^^^
565 warning: line 233, column 36 of dart:convert: [DownCastImplicit] key (Object) wi ll need runtime check to cast to type String
566 return _hasProperty(_original, key);
567 ^^^
568 warning: line 311, column 12 of dart:convert: [DownCastComposite] JS('JSExtendab leArray', '#', keys) (dynamic) will need runtime check to cast to type List<Stri ng>
569 return JS('JSExtendableArray', '#', keys);
570 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
571 warning: line 96, column 12 of dart:convert/ascii.dart: [DownCastComposite] resu lt (List<dynamic>) will need runtime check to cast to type List<int>
572 return result;
573 ^^^^^^
574 warning: line 109, column 55 of dart:convert/ascii.dart: [DownCastImplicit] sink (Sink<List<int>>) will need runtime check to cast to type ByteConversionSink
575 return new _UnicodeSubsetEncoderSink(_subsetMask, sink);
576 ^^^^
577 warning: line 87, column 34 of dart:convert/codec.dart: [DownCastComposite] _fir st.encoder.fuse(_second.encoder) (Converter<S, dynamic>) will need runtime check to cast to type Converter<S, T>
578 Converter<S, T> get encoder => _first.encoder.fuse(_second.encoder);
579 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
580 warning: line 88, column 34 of dart:convert/codec.dart: [DownCastComposite] _sec ond.decoder.fuse(_first.decoder) (Converter<T, dynamic>) will need runtime check to cast to type Converter<T, S>
581 Converter<T, S> get decoder => _second.decoder.fuse(_first.decoder);
582 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
583 warning: line 58, column 25 of dart:convert/converter.dart: [DownCastComposite] _second.convert(_first.convert(input)) (dynamic) will need runtime check to cast to type T
584 T convert(S input) => _second.convert(_first.convert(input));
585 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
586 warning: line 14, column 12 of dart:convert/encoding.dart: [DownCastComposite] b yteStream.transform(decoder).fold(new StringBuffer(), (buffer, string) => buffer ..write(string)).then((buffer) => buffer.toString()) (Future<dynamic>) will need runtime check to cast to type Future<String>
587 return byteStream
588 ^^^^^^^^^^^
589 warning: line 79, column 38 of dart:convert/html_escape.dart: [DownCastImplicit] sink (Sink<String>) will need runtime check to cast to type StringConversionSin k
590 return new _HtmlEscapeSink(this, sink);
591 ^^^^
592 warning: line 142, column 28 of dart:convert/json.dart: [DownCastComposite] toEn codable ((dynamic) → dynamic) will need runtime check to cast to type (Object) → Object
593 return new JsonEncoder(toEncodable).convert(value);
594 ^^^^^^^^^^^
595 warning: line 147, column 28 of dart:convert/json.dart: [DownCastComposite] _toE ncodable ((dynamic) → dynamic) will need runtime check to cast to type (Object) → Object
596 return new JsonEncoder(_toEncodable);
597 ^^^^^^^^^^^^
598 warning: line 243, column 48 of dart:convert/json.dart: [DownCastImplicit] _toEn codable (Function) will need runtime check to cast to type (dynamic) → dynamic
599 _JsonStringStringifier.stringify(object, _toEncodable, indent);
600 ^^^^^^^^^^^^
601 warning: line 262, column 33 of dart:convert/json.dart: [DownCastImplicit] sink (Sink<String>) will need runtime check to cast to type StringConversionSink
602 return new _JsonEncoderSink(sink, _toEncodable, indent);
603 ^^^^
604 warning: line 270, column 42 of dart:convert/json.dart: [DownCastComposite] _toE ncodable (Function) will need runtime check to cast to type (Object) → dynamic
605 return new JsonUtf8Encoder(indent, _toEncodable);
606 ^^^^^^^^^^^^
607 warning: line 352, column 36 of dart:convert/json.dart: [DownCastComposite] _toE ncodable (Function) will need runtime check to cast to type (Object) → dynamic
608 _toEncodable,
609 ^^^^^^^^^^^^
610 warning: line 425, column 51 of dart:convert/json.dart: [DownCastImplicit] _toEn codable (Function) will need runtime check to cast to type (dynamic) → dynamic
611 _JsonStringStringifier.printOn(o, stringSink, _toEncodable, _indent);
612 ^^^^^^^^^^^^
613 warning: line 455, column 53 of dart:convert/json.dart: [DownCastComposite] _toE ncodable (Function) will need runtime check to cast to type (Object) → dynamic
614 _JsonUtf8Stringifier.stringify(object, _indent, _toEncodable,
615 ^^^^^^^^^^^^
616 warning: line 715, column 16 of dart:convert/json.dart: [DownCastComposite] obje ct (dynamic) will need runtime check to cast to type Map<String, Object>
617 writeMap(object);
618 ^^^^^^
619 warning: line 817, column 60 of dart:convert/json.dart: [DownCastComposite] _toE ncodable (dynamic) will need runtime check to cast to type (Object) → Object
620 _JsonStringStringifier(this._sink, _toEncodable) : super(_toEncodable);
621 ^^^^^^^^^^^^
622 warning: line 895, column 15 of dart:convert/json.dart: [DownCastComposite] toEn codable (dynamic) will need runtime check to cast to type (Object) → Object
623 super(toEncodable)
624 ^^^^^^^^^^^
625 warning: line 24, column 44 of dart:convert/line_splitter.dart: [DownCastComposi te] sink (Sink<dynamic>) will need runtime check to cast to type Sink<String>
626 sink = new StringConversionSink.from(sink);
627 ^^^^
628 warning: line 26, column 34 of dart:convert/line_splitter.dart: [DownCastImplici t] sink (Sink<dynamic>) will need runtime check to cast to type StringConversion Sink
629 return new _LineSplitterSink(sink);
630 ^^^^
631 warning: line 125, column 33 of dart:convert/utf.dart: [DownCastImplicit] sink ( Sink<List<int>>) will need runtime check to cast to type ByteConversionSink
632 return new _Utf8EncoderSink(sink);
633 ^^^^
634 warning: line 206, column 69 of dart:core: [DownCastImplicit] symbol (Symbol) wi ll need runtime check to cast to type Symbol
635 String _symbolToString(Symbol symbol) => _symbol_dev.Symbol.getName(symbol);
636 ^^^^^^
637 warning: line 593, column 34 of dart:core/date_time.dart: [DownCastImplicit] Pri mitives.dateNow() (num) will need runtime check to cast to type int
638 millisecondsSinceEpoch = Primitives.dateNow();
639 ^^^^^^^^^^^^^^^^^^^^
640 warning: line 258, column 40 of dart:core/duration.dart: [DownCastImplicit] inMi nutes.remainder(MINUTES_PER_HOUR) (num) will need runtime check to cast to type int
641 String twoDigitMinutes = twoDigits(inMinutes.remainder(MINUTES_PER_HOUR));
642 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
643 warning: line 259, column 40 of dart:core/duration.dart: [DownCastImplicit] inSe conds.remainder(SECONDS_PER_MINUTE) (num) will need runtime check to cast to typ e int
644 String twoDigitSeconds = twoDigits(inSeconds.remainder(SECONDS_PER_MINUTE));
645 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
646 warning: line 261, column 19 of dart:core/duration.dart: [DownCastImplicit] inMi croseconds.remainder(MICROSECONDS_PER_SECOND) (num) will need runtime check to c ast to type int
647 sixDigits(inMicroseconds.remainder(MICROSECONDS_PER_SECOND));
648 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
649 warning: line 319, column 22 of dart:core/iterable.dart: [DownCastComposite] (ge nerator != null) ? generator : _id (Function) will need runtime check to cast to type (int) → E
650 _generator = (generator != null) ? generator : _id;
651 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
652 warning: line 121, column 16 of dart:core/list.dart: [DownCastComposite] e (dyna mic) will need runtime check to cast to type E
653 list.add(e);
654 ^
655 warning: line 124, column 12 of dart:core/list.dart: [DownCastComposite] makeLis tFixedLength(list) (List<dynamic>) will need runtime check to cast to type List< E>
656 return makeListFixedLength(list);
657 ^^^^^^^^^^^^^^^^^^^^^^^^^
658 warning: line 102, column 12 of dart:core/stopwatch.dart: [DownCastImplicit] (_s top == null) ? (_now() - _start) : (_stop - _start) (num) will need runtime chec k to cast to type int
659 return (_stop == null) ? (_now() - _start) : (_stop - _start);
660 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
661 warning: line 753, column 22 of dart:core/string.dart: [DownCastImplicit] _curre ntCodePoint (num) will need runtime check to cast to type int
662 int get current => _currentCodePoint;
663 ^^^^^^^^^^^^^^^^^
664 warning: line 94, column 12 of dart:core/uri.dart: [DownCastImplicit] _port (num ) will need runtime check to cast to type int
665 return _port;
666 ^^^^^
667 warning: line 893, column 14 of dart:core/uri.dart: [DownCastImplicit] this._por t (num) will need runtime check to cast to type int
668 port = this._port;
669 ^^^^^^^^^^
670 warning: line 1131, column 45 of dart:core/uri.dart: [DownCastComposite] _userin foTable (List<dynamic>) will need runtime check to cast to type List<int>
671 return _normalize(userInfo, start, end, _userinfoTable);
672 ^^^^^^^^^^^^^^
673 warning: line 1144, column 45 of dart:core/uri.dart: [DownCastComposite] _pathCh arOrSlashTable (List<dynamic>) will need runtime check to cast to type List<int>
674 result = _normalize(path, start, end, _pathCharOrSlashTable);
675 ^^^^^^^^^^^^^^^^^^^^^
676 warning: line 1146, column 51 of dart:core/uri.dart: [DownCastComposite] _pathCh arTable (List<dynamic>) will need runtime check to cast to type List<int>
677 result = pathSegments.map((s) => _uriEncode(_pathCharTable, s)).join("/");
678 ^^^^^^^^^^^^^^
679 warning: line 1163, column 61 of dart:core/uri.dart: [DownCastComposite] _queryC harTable (List<dynamic>) will need runtime check to cast to type List<int>
680 if (query != null) return _normalize(query, start, end, _queryCharTable);
681 ^^^^^^^^^^^^^^^
682 warning: line 1183, column 45 of dart:core/uri.dart: [DownCastComposite] _queryC harTable (List<dynamic>) will need runtime check to cast to type List<int>
683 return _normalize(fragment, start, end, _queryCharTable);
684 ^^^^^^^^^^^^^^^
685 warning: line 1278, column 37 of dart:core/uri.dart: [DownCastComposite] codeUni ts (List<dynamic>) will need runtime check to cast to type Iterable<int>
686 return new String.fromCharCodes(codeUnits);
687 ^^^^^^^^^
688 warning: line 1494, column 22 of dart:core/uri.dart: [DownCastImplicit] this._po rt (num) will need runtime check to cast to type int
689 targetPort = this._port;
690 ^^^^^^^^^^
691 warning: line 1754, column 23 of dart:core/uri.dart: [DownCastComposite] _unrese rved2396Table (List<dynamic>) will need runtime check to cast to type List<int>
692 return _uriEncode(_unreserved2396Table, component);
693 ^^^^^^^^^^^^^^^^^^^^
694 warning: line 1793, column 9 of dart:core/uri.dart: [DownCastComposite] _unreser vedTable (List<dynamic>) will need runtime check to cast to type List<int>
695 _unreservedTable, component, encoding: encoding, spaceToPlus: true);
696 ^^^^^^^^^^^^^^^^
697 warning: line 1837, column 23 of dart:core/uri.dart: [DownCastComposite] _encode FullTable (List<dynamic>) will need runtime check to cast to type List<int>
698 return _uriEncode(_encodeFullTable, uri);
699 ^^^^^^^^^^^^^^^^
700 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>
701 return query.split("&").fold({}, (map, element) {
702 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
703 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>
704 return bytes
705 ^^^^^^
706 warning: line 2023, column 12 of dart:core/uri.dart: [DownCastComposite] bytes ( List<dynamic>) will need runtime check to cast to type List<int>
707 return bytes;
708 ^^^^^
709 warning: line 310, column 12 of dart:_internal/iterable.dart: [DownCastComposite ] result (List<dynamic>) will need runtime check to cast to type List<E>
710 return result;
711 ^^^^^^
712 warning: line 357, column 39 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< S>
713 return new MappedIterable<S, T>._(iterable, function);
714 ^^^^^^^^
715 warning: line 378, column 17 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< S>
716 : super._(iterable, function);
717 ^^^^^^^^
718 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>
719 Iterator<T> get iterator => new ExpandIterator<S, T>(_iterable.iterator, _f);
720 ^^
721 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>
722 _currentExpansion = _f(_iterator.current).iterator;
723 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
724 warning: line 961, column 33 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< T>
725 return new WhereIterable<T>(iterable, f);
726 ^^^^^^^^
727 warning: line 961, column 43 of dart:_internal/iterable.dart: [DownCastComposite ] f ((dynamic) → bool) will need runtime check to cast to type (T) → bool
728 return new WhereIterable<T>(iterable, f);
729 ^
730 warning: line 978, column 35 of dart:_internal/iterable.dart: [DownCastComposite ] list (List<dynamic>) will need runtime check to cast to type Iterable<T>
731 return new SubListIterable<T>(list, 0, n);
732 ^^^^
733 warning: line 983, column 37 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< T>
734 return new TakeWhileIterable<T>(iterable, test);
735 ^^^^^^^^
736 warning: line 983, column 47 of dart:_internal/iterable.dart: [DownCastComposite ] test ((dynamic) → bool) will need runtime check to cast to type (T) → bool
737 return new TakeWhileIterable<T>(iterable, test);
738 ^^^^
739 warning: line 988, 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, n, null);
741 ^^^^
742 warning: line 993, column 37 of dart:_internal/iterable.dart: [DownCastComposite ] iterable (Iterable<dynamic>) will need runtime check to cast to type Iterable< T>
743 return new SkipWhileIterable<T>(iterable, test);
744 ^^^^^^^^
745 warning: line 993, column 47 of dart:_internal/iterable.dart: [DownCastComposite ] test ((dynamic) → bool) will need runtime check to cast to type (T) → bool
746 return new SkipWhileIterable<T>(iterable, test);
747 ^^^^
748 warning: line 997, column 40 of dart:_internal/iterable.dart: [DownCastComposite ] list (List<dynamic>) will need runtime check to cast to type Iterable<T>
749 return new ReversedListIterable<T>(list);
750 ^^^^
751 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>
752 return new SubListIterable<T>(list, start, end);
753 ^^^^
754 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>
755 return new ListMapView<T>(l);
756 ^
757 warning: line 251, column 59 of dart:_internal/list.dart: [DownCastImplicit] key (Object) will need runtime check to cast to type int
758 E operator[] (Object key) => containsKey(key) ? _values[key] : null;
759 ^^^
760 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
761 return JS('var', '#.splice(#, 2)[1]', bucket, index);
762 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
763 warning: line 193, column 14 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
764 action(key, this[key]);
765 ^^^
766 warning: line 261, column 17 of dart:collection: [DownCastComposite] _getTableEn try(table, key) (dynamic) will need runtime check to cast to type V
767 V value = _getTableEntry(table, key);
768 ^^^^^^^^^^^^^^^^^^^^^^^^^^
769 severe: line 372, column 61 of dart:collection: [InvalidRuntimeCheckError] Inval id runtime check on non-ground type K
770 : _validKey = (validKey != null) ? validKey : ((v) => v is K);
771 ^^^^^^
772 warning: line 397, column 49 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
773 return JS('int', '# & 0x3ffffff', _hashCode(key));
774 ^^^
775 warning: line 404, column 19 of dart:collection: [DownCastComposite] JS('var', ' #[#]', bucket, i) (dynamic) will need runtime check to cast to type K
776 if (_equals(JS('var', '#[#]', bucket, i), key)) return i;
777 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
778 warning: line 404, column 49 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
779 if (_equals(JS('var', '#[#]', bucket, i), key)) return i;
780 ^^^
781 warning: line 430, column 9 of dart:collection: [DownCastComposite] JS('var', '# [#]', keys, i) (dynamic) will need runtime check to cast to type E
782 f(JS('var', '#[#]', keys, i));
783 ^^^^^^^^^^^^^^^^^^^^^^^^^^
784 warning: line 456, column 18 of dart:collection: [DownCastComposite] JS('var', ' #[#]', keys, offset) (dynamic) will need runtime check to cast to type E
785 _current = JS('var', '#[#]', keys, offset);
786 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
787 warning: line 561, column 12 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
788 return cell._value;
789 ^^^^^^^^^^^
790 warning: line 627, column 12 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
791 return cell._value;
792 ^^^^^^^^^^^
793 warning: line 642, column 14 of dart:collection: [DownCastComposite] cell._key ( dynamic) will need runtime check to cast to type K
794 action(cell._key, cell._value);
795 ^^^^^^^^^
796 warning: line 642, column 25 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
797 action(cell._key, cell._value);
798 ^^^^^^^^^^^
799 warning: line 665, column 12 of dart:collection: [DownCastComposite] cell._value (dynamic) will need runtime check to cast to type V
800 return cell._value;
801 ^^^^^^^^^^^
802 severe: line 795, column 61 of dart:collection: [InvalidRuntimeCheckError] Inval id runtime check on non-ground type K
803 : _validKey = (validKey != null) ? validKey : ((v) => v is K);
804 ^^^^^^
805 warning: line 820, column 49 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
806 return JS('int', '# & 0x3ffffff', _hashCode(key));
807 ^^^
808 warning: line 828, column 19 of dart:collection: [DownCastComposite] cell._key ( dynamic) will need runtime check to cast to type K
809 if (_equals(cell._key, key)) return i;
810 ^^^^^^^^^
811 warning: line 828, column 30 of dart:collection: [DownCastComposite] key (dynami c) will need runtime check to cast to type K
812 if (_equals(cell._key, key)) return i;
813 ^^^
814 warning: line 862, column 9 of dart:collection: [DownCastComposite] cell._key (d ynamic) will need runtime check to cast to type E
815 f(cell._key);
816 ^^^^^^^^^
817 warning: line 889, column 18 of dart:collection: [DownCastComposite] _cell._key (dynamic) will need runtime check to cast to type E
818 _current = _cell._key;
819 ^^^^^^^^^^
820 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
821 return this.contains(object) ? object : null;
822 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
823 warning: line 962, column 12 of dart:collection: [DownCastComposite] bucket[inde x] (dynamic) will need runtime check to cast to type E
824 return bucket[index];
825 ^^^^^^^^^^^^^
826 severe: line 1194, column 61 of dart:collection: [InvalidRuntimeCheckError] Inva lid runtime check on non-ground type E
827 : _validKey = (validKey != null) ? validKey : ((x) => x is E);
828 ^^^^^^
829 warning: line 1202, column 21 of dart:collection: [DownCastComposite] JS('var', '#[#]', bucket, i) (dynamic) will need runtime check to cast to type E
830 if (_equality(JS('var', '#[#]', bucket, i), element)) return i;
831 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
832 warning: line 1202, column 51 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
833 if (_equality(JS('var', '#[#]', bucket, i), element)) return i;
834 ^^^^^^^
835 warning: line 1212, column 47 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
836 return JS('int', '# & 0x3ffffff', _hasher(element));
837 ^^^^^^^
838 warning: line 1251, column 18 of dart:collection: [DownCastComposite] JS('var', '#[#]', elements, offset) (dynamic) will need runtime check to cast to type E
839 _current = JS('var', '#[#]', elements, offset);
840 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
841 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
842 return this.contains(object) ? object : null;
843 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
844 warning: line 1340, column 12 of dart:collection: [DownCastComposite] bucket[ind ex]._element (dynamic) will need runtime check to cast to type E
845 return bucket[index]._element;
846 ^^^^^^^^^^^^^^^^^^^^^^
847 warning: line 1347, column 14 of dart:collection: [DownCastComposite] cell._elem ent (dynamic) will need runtime check to cast to type E
848 action(cell._element);
849 ^^^^^^^^^^^^^
850 warning: line 1357, column 12 of dart:collection: [DownCastComposite] _first._el ement (dynamic) will need runtime check to cast to type E
851 return _first._element;
852 ^^^^^^^^^^^^^^^
853 warning: line 1362, column 12 of dart:collection: [DownCastComposite] _last._ele ment (dynamic) will need runtime check to cast to type E
854 return _last._element;
855 ^^^^^^^^^^^^^^
856 warning: line 1431, column 19 of dart:collection: [DownCastComposite] cell._elem ent (dynamic) will need runtime check to cast to type E
857 E element = cell._element;
858 ^^^^^^^^^^^^^
859 severe: line 1596, column 61 of dart:collection: [InvalidRuntimeCheckError] Inva lid runtime check on non-ground type E
860 : _validKey = (validKey != null) ? validKey : ((x) => x is E);
861 ^^^^^^
862 warning: line 1606, column 21 of dart:collection: [DownCastComposite] cell._elem ent (dynamic) will need runtime check to cast to type E
863 if (_equality(cell._element, element)) return i;
864 ^^^^^^^^^^^^^
865 warning: line 1606, column 36 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
866 if (_equality(cell._element, element)) return i;
867 ^^^^^^^
868 warning: line 1616, column 47 of dart:collection: [DownCastComposite] element (d ynamic) will need runtime check to cast to type E
869 return JS('int', '# & 0x3ffffff', _hasher(element));
870 ^^^^^^^
871 warning: line 1678, column 18 of dart:collection: [DownCastComposite] _cell._ele ment (dynamic) will need runtime check to cast to type E
872 _current = _cell._element;
873 ^^^^^^^^^^^^^^
874 warning: line 112, column 40 of dart:collection/hash_map.dart: [DownCastComposit e] v (dynamic) will need runtime check to cast to type V
875 other.forEach((k, v) { result[k] = v; });
876 ^
877 warning: line 112, column 35 of dart:collection/hash_map.dart: [DownCastComposit e] k (dynamic) will need runtime check to cast to type K
878 other.forEach((k, v) { result[k] = v; });
879 ^
880 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>
881 for (E e in elements) result.add(e);
882 ^^^^^^^^
883 warning: line 33, column 16 of dart:collection/iterator.dart: [DownCastComposite ] _iterator.current (dynamic) will need runtime check to cast to type E
884 E result = _iterator.current;
885 ^^^^^^^^^^^^^^^^^
886 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
887 other.forEach((k, v) { result[k] = v; });
888 ^
889 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
890 other.forEach((k, v) { result[k] = v; });
891 ^
892 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>
893 return fillLiteralMap(keyValuePairs, new _LinkedHashMap<K, V>());
894 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
895 warning: line 65, column 56 of dart:collection/linked_list.dart: [DownCastCompos ite] entry (dynamic) will need runtime check to cast to type E
896 entries.forEach((entry) => _insertAfter(_previous, entry));
897 ^^^^^
898 warning: line 93, column 17 of dart:collection/linked_list.dart: [DownCastCompos ite] next (_LinkedListLink) will need runtime check to cast to type E
899 E entry = next;
900 ^^^^
901 warning: line 105, column 12 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
902 return _next;
903 ^^^^^
904 warning: line 112, column 12 of dart:collection/linked_list.dart: [DownCastCompo site] _previous (_LinkedListLink) will need runtime check to cast to type E
905 return _previous;
906 ^^^^^^^^^
907 warning: line 122, column 12 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
908 return _next;
909 ^^^^^
910 warning: line 134, column 14 of dart:collection/linked_list.dart: [DownCastCompo site] current (_LinkedListLink) will need runtime check to cast to type E
911 action(current);
912 ^^^^^^^
913 warning: line 192, column 16 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
914 _current = _next;
915 ^^^^^
916 warning: line 249, column 16 of dart:collection/linked_list.dart: [DownCastCompo site] _next (_LinkedListLink) will need runtime check to cast to type E
917 E result = _next;
918 ^^^^^
919 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>
920 otherList = iterable;
921 ^^^^^^^^
922 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
923 this[start + i] = otherList[otherStart + i];
924 ^^^^^^^^^^^^^^^^^^^^^^^^^
925 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
926 this[start + i] = otherList[otherStart + i];
927 ^^^^^^^^^^^^^^^^^^^^^^^^^
928 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
929 V get first => _map[_map.keys.first];
930 ^^^^^^^^^^^^^^^^^^^^^
931 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
932 V get single => _map[_map.keys.single];
933 ^^^^^^^^^^^^^^^^^^^^^^
934 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
935 V get last => _map[_map.keys.last];
936 ^^^^^^^^^^^^^^^^^^^^
937 warning: line 144, column 18 of dart:collection/maps.dart: [DownCastComposite] _ map[_keys.current] (dynamic) will need runtime check to cast to type V
938 _current = _map[_keys.current];
939 ^^^^^^^^^^^^^^^^^^^
940 warning: line 208, column 23 of dart:collection/queue.dart: [DownCastComposite] elements (Iterable<dynamic>) will need runtime check to cast to type Iterable<E>
941 for (final E e in elements) {
942 ^^^^^^^^
943 warning: line 211, column 12 of dart:collection/queue.dart: [DownCastComposite] list (Queue<E>) will need runtime check to cast to type DoubleLinkedQueue<E>
944 return list;
945 ^^^^
946 warning: line 402, column 40 of dart:collection/queue.dart: [DownCastComposite] sourceList (List<dynamic>) will need runtime check to cast to type Iterable<E>
947 queue._table.setRange(0, length, sourceList, 0);
948 ^^^^^^^^^^
949 warning: line 411, column 31 of dart:collection/queue.dart: [DownCastComposite] elements (Iterable<dynamic>) will need runtime check to cast to type Iterable<E>
950 for (final E element in elements) {
951 ^^^^^^^^
952 warning: line 480, column 52 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
953 _table.setRange(length, length + addCount, list, 0);
954 ^^^^
955 warning: line 486, column 52 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
956 _table.setRange(_tail, _tail + addCount, list, 0);
957 ^^^^
958 warning: line 490, column 52 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
959 _table.setRange(_tail, _tail + endSpace, list, 0);
960 ^^^^
961 warning: line 491, column 40 of dart:collection/queue.dart: [DownCastComposite] list (List<dynamic>) will need runtime check to cast to type Iterable<E>
962 _table.setRange(0, preSpace, list, endSpace);
963 ^^^^
964 warning: line 738, column 16 of dart:collection/queue.dart: [DownCastComposite] _queue._table[_position] (dynamic) will need runtime check to cast to type E
965 _current = _queue._table[_position];
966 ^^^^^^^^^^^^^^^^^^^^^^^^
967 severe: line 610, column 60 of dart:collection/splay_tree.dart: [AnalyzerMessage ] The getter '_validKey' is not defined for the class '_SplayTree<K>'
968 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
969 ^^^^^^^^^
970 severe: line 610, column 38 of dart:collection/splay_tree.dart: [AnalyzerMessage ] The getter '_comparator' is not defined for the class '_SplayTree<K>'
971 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
972 ^^^^^^^^^^^
973 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>
974 return current;
975 ^^^^^^^
976 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>
977 return current;
978 ^^^^^^^
979 warning: line 265, column 23 of dart:collection/splay_tree.dart: [DownCastCompos ite] (compare == null) ? Comparable.compare : compare (Function) will need runti me check to cast to type (K, K) → int
980 : _comparator = (compare == null) ? Comparable.compare : compare,
981 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
982 severe: line 266, column 65 of dart:collection/splay_tree.dart: [InvalidRuntimeC heckError] Invalid runtime check on non-ground type K
983 _validKey = (isValidKey != null) ? isValidKey : ((v) => v is K);
984 ^^^^^^
985 warning: line 275, column 40 of dart:collection/splay_tree.dart: [DownCastCompos ite] v (dynamic) will need runtime check to cast to type V
986 other.forEach((k, v) { result[k] = v; });
987 ^
988 warning: line 275, column 35 of dart:collection/splay_tree.dart: [DownCastCompos ite] k (dynamic) will need runtime check to cast to type K
989 other.forEach((k, v) { result[k] = v; });
990 ^
991 warning: line 328, column 25 of dart:collection/splay_tree.dart: [DownCastCompos ite] key (Object) will need runtime check to cast to type K
992 int comp = _splay(key);
993 ^^^
994 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
995 return mapRoot.value;
996 ^^^^^^^^^^^^^
997 warning: line 339, column 41 of dart:collection/splay_tree.dart: [DownCastCompos ite] key (Object) will need runtime check to cast to type K
998 _SplayTreeMapNode mapRoot = _remove(key);
999 ^^^
1000 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
1001 if (mapRoot != null) return mapRoot.value;
1002 ^^^^^^^^^^^^^
1003 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
1004 return mapRoot.value;
1005 ^^^^^^^^^^^^^
1006 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>
1007 _SplayTreeMapNode<K, V> node = nodes.current;
1008 ^^^^^^^^^^^^^
1009 warning: line 408, column 37 of dart:collection/splay_tree.dart: [DownCastCompos ite] key (Object) will need runtime check to cast to type K
1010 return _validKey(key) && _splay(key) == 0;
1011 ^^^
1012 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>
1013 if (node.right != null && visit(node.right)) return true;
1014 ^^^^^^^^^^
1015 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>
1016 node = node.left;
1017 ^^^^^^^^^
1018 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>
1019 return visit(_root);
1020 ^^^^^
1021 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
1022 return _first.key;
1023 ^^^^^^^^^^
1024 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
1025 return _last.key;
1026 ^^^^^^^^^
1027 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>
1028 return _getValue(_currentNode);
1029 ^^^^^^^^^^^^
1030 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
1031 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
1032 ^^^^^^^^^^^^^^^^^^^^
1033 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
1034 new SplayTreeSet<K>(setOrMap._comparator, setOrMap._validKey);
1035 ^^^^^^^^^^^^^^^^^^
1036 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
1037 K _getValue(_SplayTreeNode node) => node.key;
1038 ^^^^^^^^
1039 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
1040 V _getValue(_SplayTreeMapNode node) => node.value;
1041 ^^^^^^^^^^
1042 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>
1043 _SplayTreeNode<K> _getValue(_SplayTreeNode node) => node;
1044 ^^^^
1045 warning: line 691, column 23 of dart:collection/splay_tree.dart: [DownCastCompos ite] (compare == null) ? Comparable.compare : compare (Function) will need runti me check to cast to type (E, E) → int
1046 : _comparator = (compare == null) ? Comparable.compare : compare,
1047 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1048 severe: line 692, column 65 of dart:collection/splay_tree.dart: [InvalidRuntimeC heckError] Invalid runtime check on non-ground type E
1049 _validKey = (isValidKey != null) ? isValidKey : ((v) => v is E);
1050 ^^^^^^
1051 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>
1052 for (final E element in elements) {
1053 ^^^^^^^^
1054 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
1055 return _first.key;
1056 ^^^^^^^^^^
1057 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
1058 return _last.key;
1059 ^^^^^^^^^
1060 warning: line 739, column 40 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
1061 return _validKey(object) && _splay(object) == 0;
1062 ^^^^^^
1063 warning: line 751, column 20 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
1064 return _remove(object) != null;
1065 ^^^^^^
1066 warning: line 765, column 39 of dart:collection/splay_tree.dart: [DownCastCompos ite] element (Object) will need runtime check to cast to type E
1067 if (_validKey(element)) _remove(element);
1068 ^^^^^^^
1069 warning: line 779, column 39 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
1070 if (_validKey(object) && _splay(object) == 0) retainSet.add(_root.key);
1071 ^^^^^^
1072 warning: line 791, column 23 of dart:collection/splay_tree.dart: [DownCastCompos ite] object (Object) will need runtime check to cast to type E
1073 int comp = _splay(object);
1074 ^^^^^^
1075 warning: line 87, column 18 of dart:_js_helper: [DownCastImplicit] JS('num', r'p arseInt(#, 16)', source) (num) will need runtime check to cast to type int
1076 return JS('num', r'parseInt(#, 16)', source);
1077 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1078 warning: line 91, column 18 of dart:_js_helper: [DownCastImplicit] JS('num', r'p arseInt(#, 10)', source) (num) will need runtime check to cast to type int
1079 return JS('num', r'parseInt(#, 10)', source);
1080 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1081 warning: line 103, column 18 of dart:_js_helper: [DownCastImplicit] JS('num', r' parseInt(#, 10)', source) (num) will need runtime check to cast to type int
1082 return JS('num', r'parseInt(#, 10)', source);
1083 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1084 warning: line 135, column 12 of dart:_js_helper: [DownCastImplicit] JS('num', r' parseInt(#, #)', source, radix) (num) will need runtime check to cast to type in t
1085 return JS('num', r'parseInt(#, #)', source, radix);
1086 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1087 warning: line 159, column 16 of dart:_js_helper: [DownCastImplicit] result (num) will need runtime check to cast to type double
1088 return result;
1089 ^^^^^^
1090 warning: line 163, column 12 of dart:_js_helper: [DownCastImplicit] result (num) will need runtime check to cast to type double
1091 return result;
1092 ^^^^^^
1093 warning: line 250, column 15 of dart:_js_helper: [DownCastImplicit] 0xd800 + ((( (i - 0x10000) >> 10) & 0x3ff)) (num) will need runtime check to cast to type int
1094 a.add(0xd800 + ((((i - 0x10000) >> 10) & 0x3ff)));
1095 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1096 warning: line 251, column 15 of dart:_js_helper: [DownCastImplicit] 0xdc00 + (i & 0x3ff) (num) will need runtime check to cast to type int
1097 a.add(0xdc00 + (i & 0x3ff));
1098 ^^^^^^^^^^^^^^^^^^^^
1099 warning: line 265, column 31 of dart:_js_helper: [DownCastComposite] charCodes ( dynamic) will need runtime check to cast to type List<int>
1100 return _fromCharCodeApply(charCodes);
1101 ^^^^^^^^^
1102 warning: line 108, column 22 of dart:_js_helper/regexp_helper.dart: [DownCastCom posite] JS('JSExtendableArray|Null', r'#.exec(#)', _nativeRegExp, checkString(st ring)) (dynamic) will need runtime check to cast to type List<String>
1103 List<String> m = JS('JSExtendableArray|Null',
1104 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1105 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>
1106 return new _MatchImplementation(this, match);
1107 ^^^^^
1108 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>
1109 return new _MatchImplementation(this, match);
1110 ^^^^^
1111 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>
1112 for (Match match in pattern.allMatches(receiver)) {
1113 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1114 warning: line 325, column 44 of dart:js: [DownCastComposite] _convertToJS ((dyna mic) → dynamic) will need runtime check to cast to type (E) → dynamic
1115 : super._fromJs([]..addAll(other.map(_convertToJS)));
1116 ^^^^^^^^^^^^
1117 warning: line 358, column 12 of dart:js: [DownCastComposite] super[index] (dynam ic) will need runtime check to cast to type E
1118 return super[index];
1119 ^^^^^^^^^^^^
1120 warning: line 394, column 24 of dart:js: [DownCastImplicit] list (Object) will n eed runtime check to cast to type List<dynamic>
1121 callMethod('push', list);
1122 ^^^^
1123 warning: line 404, column 12 of dart:js: [DownCastComposite] callMethod('splice' , [index, 1])[0] (dynamic) will need runtime check to cast to type E
1124 return callMethod('splice', [index, 1])[0];
1125 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1126 warning: line 409, column 12 of dart:js: [DownCastComposite] callMethod('pop') ( dynamic) will need runtime check to cast to type E
1127 return callMethod('pop');
1128 ^^^^^^^^^^^^^^^^^
1129 warning: line 486, column 52 of dart:js: [DownCastImplicit] ms (num) will need r untime check to cast to type int
1130 return new DateTime.fromMillisecondsSinceEpoch(ms);
1131 ^^
1132 severe: line 120, column 7 of dart:_js_mirrors: [AnalyzerMessage] Missing concre te implementation of getter 'TypeMirror.typeArguments', getter 'TypeMirror.isOri ginalDeclaration', getter 'DeclarationMirror.owner', getter 'DeclarationMirror.l ocation' and 10 more
1133 class JsTypeMirror implements TypeMirror {
1134 ^^^^^^^^^^^^
1135 severe: line 47, column 7 of dart:_js_mirrors: [AnalyzerMessage] Missing concret e implementation of getter 'InstanceMirror.type', getter 'InstanceMirror.hasRefl ectee' and 'InstanceMirror.delegate'
1136 class JsInstanceMirror implements InstanceMirror {
1137 ^^^^^^^^^^^^^^^^
1138 severe: line 126, column 7 of dart:_js_mirrors: [AnalyzerMessage] Missing concre te implementation of getter 'VariableMirror.isStatic', getter 'VariableMirror.is Final', getter 'DeclarationMirror.owner', getter 'ParameterMirror.isOptional' an d 9 more
1139 class JsParameterMirror implements ParameterMirror {
1140 ^^^^^^^^^^^^^^^^^
1141 severe: line 84, column 7 of dart:_js_mirrors: [AnalyzerMessage] Missing concret e implementation of getter 'TypeMirror.typeArguments', getter 'ClassMirror.super interfaces', getter 'TypeMirror.isOriginalDeclaration', getter 'ClassMirror.stat icMembers' and 19 more
1142 class JsClassMirror implements ClassMirror {
1143 ^^^^^^^^^^^^^
1144 severe: line 134, column 7 of dart:_js_mirrors: [AnalyzerMessage] Missing concre te implementation of getter 'MethodMirror.isSetter', getter 'MethodMirror.isCons tructor', getter 'MethodMirror.isConstConstructor', getter 'MethodMirror.isAbstr act' and 17 more
1145 class JsMethodMirror implements MethodMirror {
1146 ^^^^^^^^^^^^^^
1147 severe: line 61, column 35 of dart:_js_mirrors: [AnalyzerMessage] The argument t ype 'void' cannot be assigned to the parameter type 'Object'
1148 return new JsInstanceMirror._(field);
1149 ^^^^^
1150 warning: line 171, column 10 of dart:mirrors: [DownCastImplicit] (tm as ClassMir ror).originalDeclaration (TypeMirror) will need runtime check to cast to type Cl assMirror
1151 return (tm as ClassMirror).originalDeclaration;
1152 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OLDNEW
« lib/src/summary.dart ('K') | « test/testing.dart ('k') | tool/test.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698