| OLD | NEW |
| 1 part of dart.async; | 1 part of dart.async; |
| 2 typedef dynamic ZoneCallback(); | 2 typedef dynamic ZoneCallback(); |
| 3 typedef dynamic ZoneUnaryCallback(arg); | 3 typedef dynamic ZoneUnaryCallback(arg); |
| 4 typedef dynamic ZoneBinaryCallback(arg1, arg2); | 4 typedef dynamic ZoneBinaryCallback(arg1, arg2); |
| 5 typedef dynamic HandleUncaughtErrorHandler(Zone self, ZoneDelegate parent, Zone
zone, error, StackTrace stackTrace); | 5 typedef dynamic HandleUncaughtErrorHandler(Zone self, ZoneDelegate parent, Zone
zone, error, StackTrace stackTrace); |
| 6 typedef dynamic RunHandler(Zone self, ZoneDelegate parent, Zone zone, f()); | 6 typedef dynamic RunHandler(Zone self, ZoneDelegate parent, Zone zone, f()); |
| 7 typedef dynamic RunUnaryHandler(Zone self, ZoneDelegate parent, Zone zone, f(ar
g), arg); | 7 typedef dynamic RunUnaryHandler(Zone self, ZoneDelegate parent, Zone zone, f(ar
g), arg); |
| 8 typedef dynamic RunBinaryHandler(Zone self, ZoneDelegate parent, Zone zone, f(a
rg1, arg2), arg1, arg2); | 8 typedef dynamic RunBinaryHandler(Zone self, ZoneDelegate parent, Zone zone, f(a
rg1, arg2), arg1, arg2); |
| 9 typedef ZoneCallback RegisterCallbackHandler(Zone self, ZoneDelegate parent, Zo
ne zone, f()); | 9 typedef ZoneCallback RegisterCallbackHandler(Zone self, ZoneDelegate parent, Zo
ne zone, f()); |
| 10 typedef ZoneUnaryCallback RegisterUnaryCallbackHandler(Zone self, ZoneDelegate
parent, Zone zone, f(arg)); | 10 typedef ZoneUnaryCallback RegisterUnaryCallbackHandler(Zone self, ZoneDelegate
parent, Zone zone, f(arg)); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 class _ZoneFunction {final _Zone zone; | 23 class _ZoneFunction {final _Zone zone; |
| 24 final Function function; | 24 final Function function; |
| 25 const _ZoneFunction(this.zone, this.function); | 25 const _ZoneFunction(this.zone, this.function); |
| 26 } | 26 } |
| 27 abstract class ZoneSpecification {const factory ZoneSpecification({ | 27 abstract class ZoneSpecification {const factory ZoneSpecification({ |
| 28 dynamic handleUncaughtError(Zone self, ZoneDelegate parent, Zone zone, error, St
ackTrace stackTrace), dynamic run(Zone self, ZoneDelegate parent, Zone zone, f()
), dynamic runUnary(Zone self, ZoneDelegate parent, Zone zone, f(arg), arg), dyn
amic runBinary(Zone self, ZoneDelegate parent, Zone zone, f(arg1, arg2), arg1, a
rg2), ZoneCallback registerCallback(Zone self, ZoneDelegate parent, Zone zone, f
()), ZoneUnaryCallback registerUnaryCallback(Zone self, ZoneDelegate parent, Zon
e zone, f(arg)), ZoneBinaryCallback registerBinaryCallback(Zone self, ZoneDelega
te parent, Zone zone, f(arg1, arg2)), AsyncError errorCallback(Zone self, ZoneDe
legate parent, Zone zone, Object error, StackTrace stackTrace), void scheduleMic
rotask(Zone self, ZoneDelegate parent, Zone zone, f()), Timer createTimer(Zone s
elf, ZoneDelegate parent, Zone zone, Duration duration, void f()), Timer createP
eriodicTimer(Zone self, ZoneDelegate parent, Zone zone, Duration period, void f(
Timer timer)), void print(Zone self, ZoneDelegate parent, Zone zone, String line
), Zone fork(Zone self, ZoneDelegate parent, Zone zone, ZoneSpecification specif
ication, Map zoneValues)} | 28 dynamic handleUncaughtError(Zone self, ZoneDelegate parent, Zone zone, error, St
ackTrace stackTrace), dynamic run(Zone self, ZoneDelegate parent, Zone zone, f()
), dynamic runUnary(Zone self, ZoneDelegate parent, Zone zone, f(arg), arg), dyn
amic runBinary(Zone self, ZoneDelegate parent, Zone zone, f(arg1, arg2), arg1, a
rg2), ZoneCallback registerCallback(Zone self, ZoneDelegate parent, Zone zone, f
()), ZoneUnaryCallback registerUnaryCallback(Zone self, ZoneDelegate parent, Zon
e zone, f(arg)), ZoneBinaryCallback registerBinaryCallback(Zone self, ZoneDelega
te parent, Zone zone, f(arg1, arg2)), AsyncError errorCallback(Zone self, ZoneDe
legate parent, Zone zone, Object error, StackTrace stackTrace), void scheduleMic
rotask(Zone self, ZoneDelegate parent, Zone zone, f()), Timer createTimer(Zone s
elf, ZoneDelegate parent, Zone zone, Duration duration, void f()), Timer createP
eriodicTimer(Zone self, ZoneDelegate parent, Zone zone, Duration period, void f(
Timer timer)), void print(Zone self, ZoneDelegate parent, Zone zone, String line
), Zone fork(Zone self, ZoneDelegate parent, Zone zone, ZoneSpecification specif
ication, Map zoneValues)} |
| 29 ) = _ZoneSpecification; | 29 ) = _ZoneSpecification; |
| 30 factory ZoneSpecification.from(ZoneSpecification other, { | 30 factory ZoneSpecification.from(ZoneSpecification other, { |
| 31 dynamic handleUncaughtError(Zone self, ZoneDelegate parent, Zone zone, error, St
ackTrace stackTrace) : null, dynamic run(Zone self, ZoneDelegate parent, Zone zo
ne, f()) : null, dynamic runUnary(Zone self, ZoneDelegate parent, Zone zone, f(a
rg), arg) : null, dynamic runBinary(Zone self, ZoneDelegate parent, Zone zone, f
(arg1, arg2), arg1, arg2) : null, ZoneCallback registerCallback(Zone self, ZoneD
elegate parent, Zone zone, f()) : null, ZoneUnaryCallback registerUnaryCallback(
Zone self, ZoneDelegate parent, Zone zone, f(arg)) : null, ZoneBinaryCallback re
gisterBinaryCallback(Zone self, ZoneDelegate parent, Zone zone, f(arg1, arg2)) :
null, AsyncError errorCallback(Zone self, ZoneDelegate parent, Zone zone, Objec
t error, StackTrace stackTrace), void scheduleMicrotask(Zone self, ZoneDelegate
parent, Zone zone, f()) : null, Timer createTimer(Zone self, ZoneDelegate parent
, Zone zone, Duration duration, void f()) : null, Timer createPeriodicTimer(Zone
self, ZoneDelegate parent, Zone zone, Duration period, void f(Timer timer)) : n
ull, void print(Zone self, ZoneDelegate parent, Zone zone, String line) : null,
Zone fork(Zone self, ZoneDelegate parent, Zone zone, ZoneSpecification specifica
tion, Map zoneValues) : null} | 31 dynamic handleUncaughtError(Zone self, ZoneDelegate parent, Zone zone, error, St
ackTrace stackTrace) : null, dynamic run(Zone self, ZoneDelegate parent, Zone zo
ne, f()) : null, dynamic runUnary(Zone self, ZoneDelegate parent, Zone zone, f(a
rg), arg) : null, dynamic runBinary(Zone self, ZoneDelegate parent, Zone zone, f
(arg1, arg2), arg1, arg2) : null, ZoneCallback registerCallback(Zone self, ZoneD
elegate parent, Zone zone, f()) : null, ZoneUnaryCallback registerUnaryCallback(
Zone self, ZoneDelegate parent, Zone zone, f(arg)) : null, ZoneBinaryCallback re
gisterBinaryCallback(Zone self, ZoneDelegate parent, Zone zone, f(arg1, arg2)) :
null, AsyncError errorCallback(Zone self, ZoneDelegate parent, Zone zone, Objec
t error, StackTrace stackTrace), void scheduleMicrotask(Zone self, ZoneDelegate
parent, Zone zone, f()) : null, Timer createTimer(Zone self, ZoneDelegate parent
, Zone zone, Duration duration, void f()) : null, Timer createPeriodicTimer(Zone
self, ZoneDelegate parent, Zone zone, Duration period, void f(Timer timer)) : n
ull, void print(Zone self, ZoneDelegate parent, Zone zone, String line) : null,
Zone fork(Zone self, ZoneDelegate parent, Zone zone, ZoneSpecification specifica
tion, Map zoneValues) : null} |
| 32 ) { | 32 ) { |
| 33 return new ZoneSpecification(handleUncaughtError: ((__x88) => DEVC$RT.cast(__x88
, dynamic, __CastType82, "CompositeCast", """line 138, column 28 of dart:async/z
one.dart: """, __x88 is __CastType82, false))(handleUncaughtError != null ? hand
leUncaughtError : other.handleUncaughtError), run: ((__x94) => DEVC$RT.cast(__x9
4, dynamic, __CastType89, "CompositeCast", """line 141, column 12 of dart:async/
zone.dart: """, __x94 is __CastType89, false))(run != null ? run : other.run), r
unUnary: ((__x102) => DEVC$RT.cast(__x102, dynamic, __CastType95, "CompositeCast
", """line 142, column 17 of dart:async/zone.dart: """, __x102 is __CastType95,
false))(runUnary != null ? runUnary : other.runUnary), runBinary: ((__x112) => D
EVC$RT.cast(__x112, dynamic, __CastType103, "CompositeCast", """line 143, column
18 of dart:async/zone.dart: """, __x112 is __CastType103, false))(runBinary !=
null ? runBinary : other.runBinary), registerCallback: ((__x118) => DEVC$RT.cast
(__x118, dynamic, __CastType113, "CompositeCast", """line 144, column 25 of dart
:async/zone.dart: """, __x118 is __CastType113, false))(registerCallback != null
? registerCallback : other.registerCallback), registerUnaryCallback: ((__x125)
=> DEVC$RT.cast(__x125, dynamic, __CastType119, "CompositeCast", """line 147, co
lumn 30 of dart:async/zone.dart: """, __x125 is __CastType119, false))(registerU
naryCallback != null ? registerUnaryCallback : other.registerUnaryCallback), reg
isterBinaryCallback: ((__x133) => DEVC$RT.cast(__x133, dynamic, __CastType126, "
CompositeCast", """line 150, column 31 of dart:async/zone.dart: """, __x133 is _
_CastType126, false))(registerBinaryCallback != null ? registerBinaryCallback :
other.registerBinaryCallback), errorCallback: ((__x140) => DEVC$RT.cast(__x140,
dynamic, __CastType134, "CompositeCast", """line 153, column 22 of dart:async/zo
ne.dart: """, __x140 is __CastType134, false))(errorCallback != null ? errorCall
back : other.errorCallback), scheduleMicrotask: ((__x146) => DEVC$RT.cast(__x146
, dynamic, __CastType141, "CompositeCast", """line 156, column 26 of dart:async/
zone.dart: """, __x146 is __CastType141, false))(scheduleMicrotask != null ? sch
eduleMicrotask : other.scheduleMicrotask), createTimer: ((__x153) => DEVC$RT.cas
t(__x153, dynamic, __CastType147, "CompositeCast", """line 159, column 21 of dar
t:async/zone.dart: """, __x153 is __CastType147, false))(createTimer != null ? c
reateTimer : other.createTimer), createPeriodicTimer: ((__x161) => DEVC$RT.cast(
__x161, dynamic, __CastType154, "CompositeCast", """line 160, column 28 of dart:
async/zone.dart: """, __x161 is __CastType154, false))(createPeriodicTimer != nu
ll ? createPeriodicTimer : other.createPeriodicTimer), print: ((__x167) => DEVC$
RT.cast(__x167, dynamic, __CastType162, "CompositeCast", """line 163, column 15
of dart:async/zone.dart: """, __x167 is __CastType162, false))(print != null ? p
rint : other.print), fork: ((__x174) => DEVC$RT.cast(__x174, dynamic, __CastType
168, "CompositeCast", """line 164, column 13 of dart:async/zone.dart: """, __x17
4 is __CastType168, false))(fork != null ? fork : other.fork)); | 33 return new ZoneSpecification(handleUncaughtError: ((__x90) => DEVC$RT.cast(__x90
, dynamic, __CastType84, "CompositeCast", """line 138, column 28 of dart:async/z
one.dart: """, __x90 is __CastType84, false))(handleUncaughtError != null ? hand
leUncaughtError : other.handleUncaughtError), run: ((__x96) => DEVC$RT.cast(__x9
6, dynamic, __CastType91, "CompositeCast", """line 141, column 12 of dart:async/
zone.dart: """, __x96 is __CastType91, false))(run != null ? run : other.run), r
unUnary: ((__x104) => DEVC$RT.cast(__x104, dynamic, __CastType97, "CompositeCast
", """line 142, column 17 of dart:async/zone.dart: """, __x104 is __CastType97,
false))(runUnary != null ? runUnary : other.runUnary), runBinary: ((__x114) => D
EVC$RT.cast(__x114, dynamic, __CastType105, "CompositeCast", """line 143, column
18 of dart:async/zone.dart: """, __x114 is __CastType105, false))(runBinary !=
null ? runBinary : other.runBinary), registerCallback: ((__x120) => DEVC$RT.cast
(__x120, dynamic, __CastType115, "CompositeCast", """line 144, column 25 of dart
:async/zone.dart: """, __x120 is __CastType115, false))(registerCallback != null
? registerCallback : other.registerCallback), registerUnaryCallback: ((__x127)
=> DEVC$RT.cast(__x127, dynamic, __CastType121, "CompositeCast", """line 147, co
lumn 30 of dart:async/zone.dart: """, __x127 is __CastType121, false))(registerU
naryCallback != null ? registerUnaryCallback : other.registerUnaryCallback), reg
isterBinaryCallback: ((__x135) => DEVC$RT.cast(__x135, dynamic, __CastType128, "
CompositeCast", """line 150, column 31 of dart:async/zone.dart: """, __x135 is _
_CastType128, false))(registerBinaryCallback != null ? registerBinaryCallback :
other.registerBinaryCallback), errorCallback: ((__x142) => DEVC$RT.cast(__x142,
dynamic, __CastType136, "CompositeCast", """line 153, column 22 of dart:async/zo
ne.dart: """, __x142 is __CastType136, false))(errorCallback != null ? errorCall
back : other.errorCallback), scheduleMicrotask: ((__x148) => DEVC$RT.cast(__x148
, dynamic, __CastType143, "CompositeCast", """line 156, column 26 of dart:async/
zone.dart: """, __x148 is __CastType143, false))(scheduleMicrotask != null ? sch
eduleMicrotask : other.scheduleMicrotask), createTimer: ((__x155) => DEVC$RT.cas
t(__x155, dynamic, __CastType149, "CompositeCast", """line 159, column 21 of dar
t:async/zone.dart: """, __x155 is __CastType149, false))(createTimer != null ? c
reateTimer : other.createTimer), createPeriodicTimer: ((__x163) => DEVC$RT.cast(
__x163, dynamic, __CastType156, "CompositeCast", """line 160, column 28 of dart:
async/zone.dart: """, __x163 is __CastType156, false))(createPeriodicTimer != nu
ll ? createPeriodicTimer : other.createPeriodicTimer), print: ((__x169) => DEVC$
RT.cast(__x169, dynamic, __CastType164, "CompositeCast", """line 163, column 15
of dart:async/zone.dart: """, __x169 is __CastType164, false))(print != null ? p
rint : other.print), fork: ((__x176) => DEVC$RT.cast(__x176, dynamic, __CastType
170, "CompositeCast", """line 164, column 13 of dart:async/zone.dart: """, __x17
6 is __CastType170, false))(fork != null ? fork : other.fork)); |
| 34 } | 34 } |
| 35 HandleUncaughtErrorHandler get handleUncaughtError; | 35 HandleUncaughtErrorHandler get handleUncaughtError; |
| 36 RunHandler get run; | 36 RunHandler get run; |
| 37 RunUnaryHandler get runUnary; | 37 RunUnaryHandler get runUnary; |
| 38 RunBinaryHandler get runBinary; | 38 RunBinaryHandler get runBinary; |
| 39 RegisterCallbackHandler get registerCallback; | 39 RegisterCallbackHandler get registerCallback; |
| 40 RegisterUnaryCallbackHandler get registerUnaryCallback; | 40 RegisterUnaryCallbackHandler get registerUnaryCallback; |
| 41 RegisterBinaryCallbackHandler get registerBinaryCallback; | 41 RegisterBinaryCallbackHandler get registerBinaryCallback; |
| 42 ErrorCallbackHandler get errorCallback; | 42 ErrorCallbackHandler get errorCallback; |
| 43 ScheduleMicrotaskHandler get scheduleMicrotask; | 43 ScheduleMicrotaskHandler get scheduleMicrotask; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 return (implementation.function)(implZone, _parentDelegate(implZone), zone, f,
arg); | 143 return (implementation.function)(implZone, _parentDelegate(implZone), zone, f,
arg); |
| 144 } | 144 } |
| 145 dynamic runBinary(Zone zone, f(arg1, arg2), arg1, arg2) { | 145 dynamic runBinary(Zone zone, f(arg1, arg2), arg1, arg2) { |
| 146 _ZoneFunction implementation = _delegationTarget._runBinary; | 146 _ZoneFunction implementation = _delegationTarget._runBinary; |
| 147 _Zone implZone = implementation.zone; | 147 _Zone implZone = implementation.zone; |
| 148 return (implementation.function)(implZone, _parentDelegate(implZone), zone, f,
arg1, arg2); | 148 return (implementation.function)(implZone, _parentDelegate(implZone), zone, f,
arg1, arg2); |
| 149 } | 149 } |
| 150 ZoneCallback registerCallback(Zone zone, f()) { | 150 ZoneCallback registerCallback(Zone zone, f()) { |
| 151 _ZoneFunction implementation = _delegationTarget._registerCallback; | 151 _ZoneFunction implementation = _delegationTarget._registerCallback; |
| 152 _Zone implZone = implementation.zone; | 152 _Zone implZone = implementation.zone; |
| 153 return ((__x175) => DEVC$RT.cast(__x175, dynamic, ZoneCallback, "DynamicCast",
"""line 522, column 12 of dart:async/zone.dart: """, __x175 is ZoneCallback, tru
e))((implementation.function)(implZone, _parentDelegate(implZone), zone, f)); | 153 return ((__x177) => DEVC$RT.cast(__x177, dynamic, ZoneCallback, "DynamicCast",
"""line 522, column 12 of dart:async/zone.dart: """, __x177 is ZoneCallback, tru
e))((implementation.function)(implZone, _parentDelegate(implZone), zone, f)); |
| 154 } | 154 } |
| 155 ZoneUnaryCallback registerUnaryCallback(Zone zone, f(arg)) { | 155 ZoneUnaryCallback registerUnaryCallback(Zone zone, f(arg)) { |
| 156 _ZoneFunction implementation = _delegationTarget._registerUnaryCallback; | 156 _ZoneFunction implementation = _delegationTarget._registerUnaryCallback; |
| 157 _Zone implZone = implementation.zone; | 157 _Zone implZone = implementation.zone; |
| 158 return ((__x176) => DEVC$RT.cast(__x176, dynamic, ZoneUnaryCallback, "DynamicCa
st", """line 529, column 12 of dart:async/zone.dart: """, __x176 is ZoneUnaryCal
lback, true))((implementation.function)(implZone, _parentDelegate(implZone), zon
e, f)); | 158 return ((__x178) => DEVC$RT.cast(__x178, dynamic, ZoneUnaryCallback, "DynamicCa
st", """line 529, column 12 of dart:async/zone.dart: """, __x178 is ZoneUnaryCal
lback, true))((implementation.function)(implZone, _parentDelegate(implZone), zon
e, f)); |
| 159 } | 159 } |
| 160 ZoneBinaryCallback registerBinaryCallback(Zone zone, f(arg1, arg2)) { | 160 ZoneBinaryCallback registerBinaryCallback(Zone zone, f(arg1, arg2)) { |
| 161 _ZoneFunction implementation = _delegationTarget._registerBinaryCallback; | 161 _ZoneFunction implementation = _delegationTarget._registerBinaryCallback; |
| 162 _Zone implZone = implementation.zone; | 162 _Zone implZone = implementation.zone; |
| 163 return ((__x177) => DEVC$RT.cast(__x177, dynamic, ZoneBinaryCallback, "DynamicC
ast", """line 536, column 12 of dart:async/zone.dart: """, __x177 is ZoneBinaryC
allback, true))((implementation.function)(implZone, _parentDelegate(implZone), z
one, f)); | 163 return ((__x179) => DEVC$RT.cast(__x179, dynamic, ZoneBinaryCallback, "DynamicC
ast", """line 536, column 12 of dart:async/zone.dart: """, __x179 is ZoneBinaryC
allback, true))((implementation.function)(implZone, _parentDelegate(implZone), z
one, f)); |
| 164 } | 164 } |
| 165 AsyncError errorCallback(Zone zone, Object error, StackTrace stackTrace) { | 165 AsyncError errorCallback(Zone zone, Object error, StackTrace stackTrace) { |
| 166 _ZoneFunction implementation = _delegationTarget._errorCallback; | 166 _ZoneFunction implementation = _delegationTarget._errorCallback; |
| 167 _Zone implZone = implementation.zone; | 167 _Zone implZone = implementation.zone; |
| 168 if (identical(implZone, _ROOT_ZONE)) return null; | 168 if (identical(implZone, _ROOT_ZONE)) return null; |
| 169 return ((__x178) => DEVC$RT.cast(__x178, dynamic, AsyncError, "DynamicCast", ""
"line 544, column 12 of dart:async/zone.dart: """, __x178 is AsyncError, true))(
(implementation.function)(implZone, _parentDelegate(implZone), zone, error, stac
kTrace)); | 169 return ((__x180) => DEVC$RT.cast(__x180, dynamic, AsyncError, "DynamicCast", ""
"line 544, column 12 of dart:async/zone.dart: """, __x180 is AsyncError, true))(
(implementation.function)(implZone, _parentDelegate(implZone), zone, error, stac
kTrace)); |
| 170 } | 170 } |
| 171 void scheduleMicrotask(Zone zone, f()) { | 171 void scheduleMicrotask(Zone zone, f()) { |
| 172 _ZoneFunction implementation = _delegationTarget._scheduleMicrotask; | 172 _ZoneFunction implementation = _delegationTarget._scheduleMicrotask; |
| 173 _Zone implZone = implementation.zone; | 173 _Zone implZone = implementation.zone; |
| 174 (implementation.function)(implZone, _parentDelegate(implZone), zone, f); | 174 (implementation.function)(implZone, _parentDelegate(implZone), zone, f); |
| 175 } | 175 } |
| 176 Timer createTimer(Zone zone, Duration duration, void f()) { | 176 Timer createTimer(Zone zone, Duration duration, void f()) { |
| 177 _ZoneFunction implementation = _delegationTarget._createTimer; | 177 _ZoneFunction implementation = _delegationTarget._createTimer; |
| 178 _Zone implZone = implementation.zone; | 178 _Zone implZone = implementation.zone; |
| 179 return ((__x179) => DEVC$RT.cast(__x179, dynamic, Timer, "DynamicCast", """line
558, column 12 of dart:async/zone.dart: """, __x179 is Timer, true))((implement
ation.function)(implZone, _parentDelegate(implZone), zone, duration, f)); | 179 return ((__x181) => DEVC$RT.cast(__x181, dynamic, Timer, "DynamicCast", """line
558, column 12 of dart:async/zone.dart: """, __x181 is Timer, true))((implement
ation.function)(implZone, _parentDelegate(implZone), zone, duration, f)); |
| 180 } | 180 } |
| 181 Timer createPeriodicTimer(Zone zone, Duration period, void f(Timer timer)) { | 181 Timer createPeriodicTimer(Zone zone, Duration period, void f(Timer timer)) { |
| 182 _ZoneFunction implementation = _delegationTarget._createPeriodicTimer; | 182 _ZoneFunction implementation = _delegationTarget._createPeriodicTimer; |
| 183 _Zone implZone = implementation.zone; | 183 _Zone implZone = implementation.zone; |
| 184 return ((__x180) => DEVC$RT.cast(__x180, dynamic, Timer, "DynamicCast", """line
565, column 12 of dart:async/zone.dart: """, __x180 is Timer, true))((implement
ation.function)(implZone, _parentDelegate(implZone), zone, period, f)); | 184 return ((__x182) => DEVC$RT.cast(__x182, dynamic, Timer, "DynamicCast", """line
565, column 12 of dart:async/zone.dart: """, __x182 is Timer, true))((implement
ation.function)(implZone, _parentDelegate(implZone), zone, period, f)); |
| 185 } | 185 } |
| 186 void print(Zone zone, String line) { | 186 void print(Zone zone, String line) { |
| 187 _ZoneFunction implementation = _delegationTarget._print; | 187 _ZoneFunction implementation = _delegationTarget._print; |
| 188 _Zone implZone = implementation.zone; | 188 _Zone implZone = implementation.zone; |
| 189 (implementation.function)(implZone, _parentDelegate(implZone), zone, line); | 189 (implementation.function)(implZone, _parentDelegate(implZone), zone, line); |
| 190 } | 190 } |
| 191 Zone fork(Zone zone, ZoneSpecification specification, Map zoneValues) { | 191 Zone fork(Zone zone, ZoneSpecification specification, Map zoneValues) { |
| 192 _ZoneFunction implementation = _delegationTarget._fork; | 192 _ZoneFunction implementation = _delegationTarget._fork; |
| 193 _Zone implZone = implementation.zone; | 193 _Zone implZone = implementation.zone; |
| 194 return ((__x181) => DEVC$RT.cast(__x181, dynamic, Zone, "DynamicCast", """line
580, column 12 of dart:async/zone.dart: """, __x181 is Zone, true))((implementat
ion.function)(implZone, _parentDelegate(implZone), zone, specification, zoneValu
es)); | 194 return ((__x183) => DEVC$RT.cast(__x183, dynamic, Zone, "DynamicCast", """line
580, column 12 of dart:async/zone.dart: """, __x183 is Zone, true))((implementat
ion.function)(implZone, _parentDelegate(implZone), zone, specification, zoneValu
es)); |
| 195 } | 195 } |
| 196 } | 196 } |
| 197 abstract class _Zone implements Zone {const _Zone(); | 197 abstract class _Zone implements Zone {const _Zone(); |
| 198 _ZoneFunction get _runUnary; | 198 _ZoneFunction get _runUnary; |
| 199 _ZoneFunction get _run; | 199 _ZoneFunction get _run; |
| 200 _ZoneFunction get _runBinary; | 200 _ZoneFunction get _runBinary; |
| 201 _ZoneFunction get _registerCallback; | 201 _ZoneFunction get _registerCallback; |
| 202 _ZoneFunction get _registerUnaryCallback; | 202 _ZoneFunction get _registerUnaryCallback; |
| 203 _ZoneFunction get _registerBinaryCallback; | 203 _ZoneFunction get _registerBinaryCallback; |
| 204 _ZoneFunction get _errorCallback; | 204 _ZoneFunction get _errorCallback; |
| 205 _ZoneFunction get _scheduleMicrotask; | 205 _ZoneFunction get _scheduleMicrotask; |
| 206 _ZoneFunction get _createTimer; | 206 _ZoneFunction get _createTimer; |
| 207 _ZoneFunction get _createPeriodicTimer; | 207 _ZoneFunction get _createPeriodicTimer; |
| 208 _ZoneFunction get _print; | 208 _ZoneFunction get _print; |
| 209 _ZoneFunction get _fork; | 209 _ZoneFunction get _fork; |
| 210 _ZoneFunction get _handleUncaughtError; | 210 _ZoneFunction get _handleUncaughtError; |
| 211 _Zone get parent; | 211 _Zone get parent; |
| 212 _ZoneDelegate get _delegate; | 212 ZoneDelegate get _delegate; |
| 213 Map get _map; | 213 Map get _map; |
| 214 bool inSameErrorZone(Zone otherZone) { | 214 bool inSameErrorZone(Zone otherZone) { |
| 215 return identical(this, otherZone) || identical(errorZone, otherZone.errorZone); | 215 return identical(this, otherZone) || identical(errorZone, otherZone.errorZone); |
| 216 } | 216 } |
| 217 } | 217 } |
| 218 class _CustomZone extends _Zone {_ZoneFunction _runUnary; | 218 class _CustomZone extends _Zone {_ZoneFunction _runUnary; |
| 219 _ZoneFunction _run; | 219 _ZoneFunction _run; |
| 220 _ZoneFunction _runBinary; | 220 _ZoneFunction _runBinary; |
| 221 _ZoneFunction _registerCallback; | 221 _ZoneFunction _registerCallback; |
| 222 _ZoneFunction _registerUnaryCallback; | 222 _ZoneFunction _registerUnaryCallback; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 dynamic handleUncaughtError(error, StackTrace stackTrace) { | 324 dynamic handleUncaughtError(error, StackTrace stackTrace) { |
| 325 _ZoneFunction implementation = this._handleUncaughtError; | 325 _ZoneFunction implementation = this._handleUncaughtError; |
| 326 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 326 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 327 return (implementation.function)(implementation.zone, parentDelegate, this, err
or, stackTrace); | 327 return (implementation.function)(implementation.zone, parentDelegate, this, err
or, stackTrace); |
| 328 } | 328 } |
| 329 Zone fork({ | 329 Zone fork({ |
| 330 ZoneSpecification specification, Map zoneValues} | 330 ZoneSpecification specification, Map zoneValues} |
| 331 ) { | 331 ) { |
| 332 _ZoneFunction implementation = this._fork; | 332 _ZoneFunction implementation = this._fork; |
| 333 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 333 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 334 return ((__x182) => DEVC$RT.cast(__x182, dynamic, Zone, "DynamicCast", """line
787, column 12 of dart:async/zone.dart: """, __x182 is Zone, true))((implementat
ion.function)(implementation.zone, parentDelegate, this, specification, zoneValu
es)); | 334 return ((__x184) => DEVC$RT.cast(__x184, dynamic, Zone, "DynamicCast", """line
787, column 12 of dart:async/zone.dart: """, __x184 is Zone, true))((implementat
ion.function)(implementation.zone, parentDelegate, this, specification, zoneValu
es)); |
| 335 } | 335 } |
| 336 dynamic run(f()) { | 336 dynamic run(f()) { |
| 337 _ZoneFunction implementation = this._run; | 337 _ZoneFunction implementation = this._run; |
| 338 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 338 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 339 return (implementation.function)(implementation.zone, parentDelegate, this, f); | 339 return (implementation.function)(implementation.zone, parentDelegate, this, f); |
| 340 } | 340 } |
| 341 dynamic runUnary(f(arg), arg) { | 341 dynamic runUnary(f(arg), arg) { |
| 342 _ZoneFunction implementation = this._runUnary; | 342 _ZoneFunction implementation = this._runUnary; |
| 343 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 343 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 344 return (implementation.function)(implementation.zone, parentDelegate, this, f,
arg); | 344 return (implementation.function)(implementation.zone, parentDelegate, this, f,
arg); |
| 345 } | 345 } |
| 346 dynamic runBinary(f(arg1, arg2), arg1, arg2) { | 346 dynamic runBinary(f(arg1, arg2), arg1, arg2) { |
| 347 _ZoneFunction implementation = this._runBinary; | 347 _ZoneFunction implementation = this._runBinary; |
| 348 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 348 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 349 return (implementation.function)(implementation.zone, parentDelegate, this, f,
arg1, arg2); | 349 return (implementation.function)(implementation.zone, parentDelegate, this, f,
arg1, arg2); |
| 350 } | 350 } |
| 351 ZoneCallback registerCallback(f()) { | 351 ZoneCallback registerCallback(f()) { |
| 352 _ZoneFunction implementation = this._registerCallback; | 352 _ZoneFunction implementation = this._registerCallback; |
| 353 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 353 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 354 return ((__x183) => DEVC$RT.cast(__x183, dynamic, ZoneCallback, "DynamicCast",
"""line 820, column 12 of dart:async/zone.dart: """, __x183 is ZoneCallback, tru
e))((implementation.function)(implementation.zone, parentDelegate, this, f)); | 354 return ((__x185) => DEVC$RT.cast(__x185, dynamic, ZoneCallback, "DynamicCast",
"""line 820, column 12 of dart:async/zone.dart: """, __x185 is ZoneCallback, tru
e))((implementation.function)(implementation.zone, parentDelegate, this, f)); |
| 355 } | 355 } |
| 356 ZoneUnaryCallback registerUnaryCallback(f(arg)) { | 356 ZoneUnaryCallback registerUnaryCallback(f(arg)) { |
| 357 _ZoneFunction implementation = this._registerUnaryCallback; | 357 _ZoneFunction implementation = this._registerUnaryCallback; |
| 358 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 358 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 359 return ((__x184) => DEVC$RT.cast(__x184, dynamic, ZoneUnaryCallback, "DynamicCa
st", """line 828, column 12 of dart:async/zone.dart: """, __x184 is ZoneUnaryCal
lback, true))((implementation.function)(implementation.zone, parentDelegate, thi
s, f)); | 359 return ((__x186) => DEVC$RT.cast(__x186, dynamic, ZoneUnaryCallback, "DynamicCa
st", """line 828, column 12 of dart:async/zone.dart: """, __x186 is ZoneUnaryCal
lback, true))((implementation.function)(implementation.zone, parentDelegate, thi
s, f)); |
| 360 } | 360 } |
| 361 ZoneBinaryCallback registerBinaryCallback(f(arg1, arg2)) { | 361 ZoneBinaryCallback registerBinaryCallback(f(arg1, arg2)) { |
| 362 _ZoneFunction implementation = this._registerBinaryCallback; | 362 _ZoneFunction implementation = this._registerBinaryCallback; |
| 363 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 363 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 364 return ((__x185) => DEVC$RT.cast(__x185, dynamic, ZoneBinaryCallback, "DynamicC
ast", """line 836, column 12 of dart:async/zone.dart: """, __x185 is ZoneBinaryC
allback, true))((implementation.function)(implementation.zone, parentDelegate, t
his, f)); | 364 return ((__x187) => DEVC$RT.cast(__x187, dynamic, ZoneBinaryCallback, "DynamicC
ast", """line 836, column 12 of dart:async/zone.dart: """, __x187 is ZoneBinaryC
allback, true))((implementation.function)(implementation.zone, parentDelegate, t
his, f)); |
| 365 } | 365 } |
| 366 AsyncError errorCallback(Object error, StackTrace stackTrace) { | 366 AsyncError errorCallback(Object error, StackTrace stackTrace) { |
| 367 final _ZoneFunction implementation = this._errorCallback; | 367 final _ZoneFunction implementation = this._errorCallback; |
| 368 assert (implementation != null); final Zone implementationZone = implementation
.zone; | 368 assert (implementation != null); final Zone implementationZone = implementation
.zone; |
| 369 if (identical(implementationZone, _ROOT_ZONE)) return null; | 369 if (identical(implementationZone, _ROOT_ZONE)) return null; |
| 370 final ZoneDelegate parentDelegate = _parentDelegate(DEVC$RT.cast(implementation
Zone, Zone, _Zone, "ImplicitCast", """line 845, column 57 of dart:async/zone.dar
t: """, implementationZone is _Zone, true)); | 370 final ZoneDelegate parentDelegate = _parentDelegate(DEVC$RT.cast(implementation
Zone, Zone, _Zone, "ImplicitCast", """line 845, column 57 of dart:async/zone.dar
t: """, implementationZone is _Zone, true)); |
| 371 return ((__x186) => DEVC$RT.cast(__x186, dynamic, AsyncError, "DynamicCast", ""
"line 846, column 12 of dart:async/zone.dart: """, __x186 is AsyncError, true))(
(implementation.function)(implementationZone, parentDelegate, this, error, stack
Trace)); | 371 return ((__x188) => DEVC$RT.cast(__x188, dynamic, AsyncError, "DynamicCast", ""
"line 846, column 12 of dart:async/zone.dart: """, __x188 is AsyncError, true))(
(implementation.function)(implementationZone, parentDelegate, this, error, stack
Trace)); |
| 372 } | 372 } |
| 373 void scheduleMicrotask(void f()) { | 373 void scheduleMicrotask(void f()) { |
| 374 _ZoneFunction implementation = this._scheduleMicrotask; | 374 _ZoneFunction implementation = this._scheduleMicrotask; |
| 375 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 375 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 376 return (implementation.function)(implementation.zone, parentDelegate, this, f); | 376 return (implementation.function)(implementation.zone, parentDelegate, this, f); |
| 377 } | 377 } |
| 378 Timer createTimer(Duration duration, void f()) { | 378 Timer createTimer(Duration duration, void f()) { |
| 379 _ZoneFunction implementation = this._createTimer; | 379 _ZoneFunction implementation = this._createTimer; |
| 380 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 380 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 381 return ((__x187) => DEVC$RT.cast(__x187, dynamic, Timer, "DynamicCast", """line
862, column 12 of dart:async/zone.dart: """, __x187 is Timer, true))((implement
ation.function)(implementation.zone, parentDelegate, this, duration, f)); | 381 return ((__x189) => DEVC$RT.cast(__x189, dynamic, Timer, "DynamicCast", """line
862, column 12 of dart:async/zone.dart: """, __x189 is Timer, true))((implement
ation.function)(implementation.zone, parentDelegate, this, duration, f)); |
| 382 } | 382 } |
| 383 Timer createPeriodicTimer(Duration duration, void f(Timer timer)) { | 383 Timer createPeriodicTimer(Duration duration, void f(Timer timer)) { |
| 384 _ZoneFunction implementation = this._createPeriodicTimer; | 384 _ZoneFunction implementation = this._createPeriodicTimer; |
| 385 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 385 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 386 return ((__x188) => DEVC$RT.cast(__x188, dynamic, Timer, "DynamicCast", """line
870, column 12 of dart:async/zone.dart: """, __x188 is Timer, true))((implement
ation.function)(implementation.zone, parentDelegate, this, duration, f)); | 386 return ((__x190) => DEVC$RT.cast(__x190, dynamic, Timer, "DynamicCast", """line
870, column 12 of dart:async/zone.dart: """, __x190 is Timer, true))((implement
ation.function)(implementation.zone, parentDelegate, this, duration, f)); |
| 387 } | 387 } |
| 388 void print(String line) { | 388 void print(String line) { |
| 389 _ZoneFunction implementation = this._print; | 389 _ZoneFunction implementation = this._print; |
| 390 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); | 390 assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(
implementation.zone); |
| 391 return (implementation.function)(implementation.zone, parentDelegate, this, lin
e); | 391 return (implementation.function)(implementation.zone, parentDelegate, this, lin
e); |
| 392 } | 392 } |
| 393 } | 393 } |
| 394 void _rootHandleUncaughtError(Zone self, ZoneDelegate parent, Zone zone, error,
StackTrace stackTrace) { | 394 void _rootHandleUncaughtError(Zone self, ZoneDelegate parent, Zone zone, error,
StackTrace stackTrace) { |
| 395 _schedulePriorityAsyncCallback(() { | 395 _schedulePriorityAsyncCallback(() { |
| 396 throw new _UncaughtAsyncError(error, stackTrace); | 396 throw new _UncaughtAsyncError(error, stackTrace); |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 _scheduleAsyncCallback(f); | 445 _scheduleAsyncCallback(f); |
| 446 } | 446 } |
| 447 Timer _rootCreateTimer(Zone self, ZoneDelegate parent, Zone zone, Duration dura
tion, void callback()) { | 447 Timer _rootCreateTimer(Zone self, ZoneDelegate parent, Zone zone, Duration dura
tion, void callback()) { |
| 448 if (!identical(_ROOT_ZONE, zone)) { | 448 if (!identical(_ROOT_ZONE, zone)) { |
| 449 callback = zone.bindCallback(callback); | 449 callback = zone.bindCallback(callback); |
| 450 } | 450 } |
| 451 return Timer._createTimer(duration, callback); | 451 return Timer._createTimer(duration, callback); |
| 452 } | 452 } |
| 453 Timer _rootCreatePeriodicTimer(Zone self, ZoneDelegate parent, Zone zone, Durat
ion duration, void callback(Timer timer)) { | 453 Timer _rootCreatePeriodicTimer(Zone self, ZoneDelegate parent, Zone zone, Durat
ion duration, void callback(Timer timer)) { |
| 454 if (!identical(_ROOT_ZONE, zone)) { | 454 if (!identical(_ROOT_ZONE, zone)) { |
| 455 callback = ((__x191) => DEVC$RT.cast(__x191, ZoneUnaryCallback, __CastType189, "
CompositeCast", """line 962, column 16 of dart:async/zone.dart: """, __x191 is _
_CastType189, false))(zone.bindUnaryCallback(callback)); | 455 callback = ((__x193) => DEVC$RT.cast(__x193, ZoneUnaryCallback, __CastType191, "
CompositeCast", """line 962, column 16 of dart:async/zone.dart: """, __x193 is _
_CastType191, false))(zone.bindUnaryCallback(callback)); |
| 456 } | 456 } |
| 457 return Timer._createPeriodicTimer(duration, callback); | 457 return Timer._createPeriodicTimer(duration, callback); |
| 458 } | 458 } |
| 459 void _rootPrint(Zone self, ZoneDelegate parent, Zone zone, String line) { | 459 void _rootPrint(Zone self, ZoneDelegate parent, Zone zone, String line) { |
| 460 printToConsole(line); | 460 printToConsole(line); |
| 461 } | 461 } |
| 462 void _printToZone(String line) { | 462 void _printToZone(String line) { |
| 463 Zone.current.print(line); | 463 Zone.current.print(line); |
| 464 } | 464 } |
| 465 Zone _rootFork(Zone self, ZoneDelegate parent, Zone zone, ZoneSpecification spe
cification, Map zoneValues) { | 465 Zone _rootFork(Zone self, ZoneDelegate parent, Zone zone, ZoneSpecification spe
cification, Map zoneValues) { |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 dynamic runZoned(body(), { | 626 dynamic runZoned(body(), { |
| 627 Map zoneValues, ZoneSpecification zoneSpecification, Function onError} | 627 Map zoneValues, ZoneSpecification zoneSpecification, Function onError} |
| 628 ) { | 628 ) { |
| 629 HandleUncaughtErrorHandler errorHandler; | 629 HandleUncaughtErrorHandler errorHandler; |
| 630 if (onError != null) { | 630 if (onError != null) { |
| 631 errorHandler = (Zone self, ZoneDelegate parent, Zone zone, error, StackTrace sta
ckTrace) { | 631 errorHandler = (Zone self, ZoneDelegate parent, Zone zone, error, StackTrace sta
ckTrace) { |
| 632 try { | 632 try { |
| 633 if (onError is ZoneBinaryCallback) { | 633 if (onError is ZoneBinaryCallback) { |
| 634 return self.parent.runBinary(onError, error, stackTrace); | 634 return self.parent.runBinary(onError, error, stackTrace); |
| 635 } | 635 } |
| 636 return self.parent.runUnary(DEVC$RT.cast(onError, Function, __CastType192, "Imp
licitCast", """line 1228, column 37 of dart:async/zone.dart: """, onError is __C
astType192, true), error); | 636 return self.parent.runUnary(DEVC$RT.cast(onError, Function, __CastType194, "Imp
licitCast", """line 1228, column 37 of dart:async/zone.dart: """, onError is __C
astType194, true), error); |
| 637 } | 637 } |
| 638 catch (e, s) { | 638 catch (e, s) { |
| 639 if (identical(e, error)) { | 639 if (identical(e, error)) { |
| 640 return parent.handleUncaughtError(zone, error, stackTrace); | 640 return parent.handleUncaughtError(zone, error, stackTrace); |
| 641 } | 641 } |
| 642 else { | 642 else { |
| 643 return parent.handleUncaughtError(zone, e, s); | 643 return parent.handleUncaughtError(zone, e, s); |
| 644 } | 644 } |
| 645 } | 645 } |
| 646 } | 646 } |
| 647 ; | 647 ; |
| 648 } | 648 } |
| 649 if (zoneSpecification == null) { | 649 if (zoneSpecification == null) { |
| 650 zoneSpecification = new ZoneSpecification(handleUncaughtError: errorHandler); | 650 zoneSpecification = new ZoneSpecification(handleUncaughtError: errorHandler); |
| 651 } | 651 } |
| 652 else if (errorHandler != null) { | 652 else if (errorHandler != null) { |
| 653 zoneSpecification = new ZoneSpecification.from(zoneSpecification, handleUncaught
Error: errorHandler); | 653 zoneSpecification = new ZoneSpecification.from(zoneSpecification, handleUncaught
Error: errorHandler); |
| 654 } | 654 } |
| 655 Zone zone = Zone.current.fork(specification: zoneSpecification, zoneValues: zon
eValues); | 655 Zone zone = Zone.current.fork(specification: zoneSpecification, zoneValues: zon
eValues); |
| 656 if (onError != null) { | 656 if (onError != null) { |
| 657 return zone.runGuarded(body); | 657 return zone.runGuarded(body); |
| 658 } | 658 } |
| 659 else { | 659 else { |
| 660 return zone.run(body); | 660 return zone.run(body); |
| 661 } | 661 } |
| 662 } | 662 } |
| 663 typedef dynamic __CastType82(Zone __u83, ZoneDelegate __u84, Zone __u85, dynami
c __u86, StackTrace __u87); | 663 typedef dynamic __CastType84(Zone __u85, ZoneDelegate __u86, Zone __u87, dynami
c __u88, StackTrace __u89); |
| 664 typedef dynamic __CastType89(Zone __u90, ZoneDelegate __u91, Zone __u92, dynami
c __u93()); | 664 typedef dynamic __CastType91(Zone __u92, ZoneDelegate __u93, Zone __u94, dynami
c __u95()); |
| 665 typedef dynamic __CastType95(Zone __u96, ZoneDelegate __u97, Zone __u98, dynami
c __u99(dynamic __u100), dynamic __u101); | 665 typedef dynamic __CastType97(Zone __u98, ZoneDelegate __u99, Zone __u100, dynam
ic __u101(dynamic __u102), dynamic __u103); |
| 666 typedef dynamic __CastType103(Zone __u104, ZoneDelegate __u105, Zone __u106, dy
namic __u107(dynamic __u108, dynamic __u109), dynamic __u110, dynamic __u111); | 666 typedef dynamic __CastType105(Zone __u106, ZoneDelegate __u107, Zone __u108, dy
namic __u109(dynamic __u110, dynamic __u111), dynamic __u112, dynamic __u113); |
| 667 typedef ZoneCallback __CastType113(Zone __u114, ZoneDelegate __u115, Zone __u11
6, dynamic __u117()); | 667 typedef ZoneCallback __CastType115(Zone __u116, ZoneDelegate __u117, Zone __u11
8, dynamic __u119()); |
| 668 typedef ZoneUnaryCallback __CastType119(Zone __u120, ZoneDelegate __u121, Zone
__u122, dynamic __u123(dynamic __u124)); | 668 typedef ZoneUnaryCallback __CastType121(Zone __u122, ZoneDelegate __u123, Zone
__u124, dynamic __u125(dynamic __u126)); |
| 669 typedef ZoneBinaryCallback __CastType126(Zone __u127, ZoneDelegate __u128, Zone
__u129, dynamic __u130(dynamic __u131, dynamic __u132)); | 669 typedef ZoneBinaryCallback __CastType128(Zone __u129, ZoneDelegate __u130, Zone
__u131, dynamic __u132(dynamic __u133, dynamic __u134)); |
| 670 typedef AsyncError __CastType134(Zone __u135, ZoneDelegate __u136, Zone __u137,
Object __u138, StackTrace __u139); | 670 typedef AsyncError __CastType136(Zone __u137, ZoneDelegate __u138, Zone __u139,
Object __u140, StackTrace __u141); |
| 671 typedef void __CastType141(Zone __u142, ZoneDelegate __u143, Zone __u144, dynam
ic __u145()); | 671 typedef void __CastType143(Zone __u144, ZoneDelegate __u145, Zone __u146, dynam
ic __u147()); |
| 672 typedef Timer __CastType147(Zone __u148, ZoneDelegate __u149, Zone __u150, Dura
tion __u151, void __u152()); | 672 typedef Timer __CastType149(Zone __u150, ZoneDelegate __u151, Zone __u152, Dura
tion __u153, void __u154()); |
| 673 typedef Timer __CastType154(Zone __u155, ZoneDelegate __u156, Zone __u157, Dura
tion __u158, void __u159(Timer __u160)); | 673 typedef Timer __CastType156(Zone __u157, ZoneDelegate __u158, Zone __u159, Dura
tion __u160, void __u161(Timer __u162)); |
| 674 typedef void __CastType162(Zone __u163, ZoneDelegate __u164, Zone __u165, Strin
g __u166); | 674 typedef void __CastType164(Zone __u165, ZoneDelegate __u166, Zone __u167, Strin
g __u168); |
| 675 typedef Zone __CastType168(Zone __u169, ZoneDelegate __u170, Zone __u171, ZoneS
pecification __u172, Map<dynamic, dynamic> __u173); | 675 typedef Zone __CastType170(Zone __u171, ZoneDelegate __u172, Zone __u173, ZoneS
pecification __u174, Map<dynamic, dynamic> __u175); |
| 676 typedef void __CastType189(Timer __u190); | 676 typedef void __CastType191(Timer __u192); |
| 677 typedef dynamic __CastType192(dynamic __u193); | 677 typedef dynamic __CastType194(dynamic __u195); |
| OLD | NEW |