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

Side by Side Diff: test/dart_codegen/expect/async/zone.dart

Issue 1055923002: Don't call dinvoke on Object methods (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Refactor dynamic target logic Created 5 years, 8 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 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));
11 typedef ZoneBinaryCallback RegisterBinaryCallbackHandler(Zone self, ZoneDelegat e parent, Zone zone, f(arg1, arg2)); 11 typedef ZoneBinaryCallback RegisterBinaryCallbackHandler(Zone self, ZoneDelegat e parent, Zone zone, f(arg1, arg2));
12 typedef AsyncError ErrorCallbackHandler(Zone self, ZoneDelegate parent, Zone zo ne, Object error, StackTrace stackTrace); 12 typedef AsyncError ErrorCallbackHandler(Zone self, ZoneDelegate parent, Zone zo ne, Object error, StackTrace stackTrace);
13 typedef void ScheduleMicrotaskHandler(Zone self, ZoneDelegate parent, Zone zone , f()); 13 typedef void ScheduleMicrotaskHandler(Zone self, ZoneDelegate parent, Zone zone , f());
14 typedef Timer CreateTimerHandler(Zone self, ZoneDelegate parent, Zone zone, Dur ation duration, void f()); 14 typedef Timer CreateTimerHandler(Zone self, ZoneDelegate parent, Zone zone, Dur ation duration, void f());
15 typedef Timer CreatePeriodicTimerHandler(Zone self, ZoneDelegate parent, Zone z one, Duration period, void f(Timer timer)); 15 typedef Timer CreatePeriodicTimerHandler(Zone self, ZoneDelegate parent, Zone z one, Duration period, void f(Timer timer));
16 typedef void PrintHandler(Zone self, ZoneDelegate parent, Zone zone, String lin e); 16 typedef void PrintHandler(Zone self, ZoneDelegate parent, Zone zone, String lin e);
17 typedef Zone ForkHandler(Zone self, ZoneDelegate parent, Zone zone, ZoneSpecifi cation specification, Map zoneValues); 17 typedef Zone ForkHandler(Zone self, ZoneDelegate parent, Zone zone, ZoneSpecifi cation specification, Map zoneValues);
18 class AsyncError implements Error {final error; 18 class AsyncError implements Error {final error;
19 final StackTrace stackTrace; 19 final StackTrace stackTrace;
20 AsyncError(this.error, this.stackTrace); 20 AsyncError(this.error, this.stackTrace);
21 String toString() => ((__x98) => DEVC$RT.cast(__x98, dynamic, String, "DynamicC ast", """line 46, column 24 of dart:async/zone.dart: """, __x98 is String, true) )(error.toString()); 21 String toString() => error.toString();
22 } 22 }
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: ((__x105) => DEVC$RT.cast(__x1 05, dynamic, __t99, "CompositeCast", """line 138, column 28 of dart:async/zone.d art: """, __x105 is __t99, false))(handleUncaughtError != null ? handleUncaughtE rror : other.handleUncaughtError), run: ((__x111) => DEVC$RT.cast(__x111, dynami c, __t106, "CompositeCast", """line 141, column 12 of dart:async/zone.dart: """, __x111 is __t106, false))(run != null ? run : other.run), runUnary: ((__x119) = > DEVC$RT.cast(__x119, dynamic, __t112, "CompositeCast", """line 142, column 17 of dart:async/zone.dart: """, __x119 is __t112, false))(runUnary != null ? runUn ary : other.runUnary), runBinary: ((__x129) => DEVC$RT.cast(__x129, dynamic, __t 120, "CompositeCast", """line 143, column 18 of dart:async/zone.dart: """, __x12 9 is __t120, false))(runBinary != null ? runBinary : other.runBinary), registerC allback: ((__x136) => DEVC$RT.cast(__x136, dynamic, __t130, "CompositeCast", """ line 144, column 25 of dart:async/zone.dart: """, __x136 is __t130, false))(regi sterCallback != null ? registerCallback : other.registerCallback), registerUnary Callback: ((__x145) => DEVC$RT.cast(__x145, dynamic, __t137, "CompositeCast", "" "line 147, column 30 of dart:async/zone.dart: """, __x145 is __t137, false))(reg isterUnaryCallback != null ? registerUnaryCallback : other.registerUnaryCallback ), registerBinaryCallback: ((__x156) => DEVC$RT.cast(__x156, dynamic, __t146, "C ompositeCast", """line 150, column 31 of dart:async/zone.dart: """, __x156 is __ t146, false))(registerBinaryCallback != null ? registerBinaryCallback : other.re gisterBinaryCallback), errorCallback: ((__x163) => DEVC$RT.cast(__x163, dynamic, __t157, "CompositeCast", """line 153, column 22 of dart:async/zone.dart: """, _ _x163 is __t157, false))(errorCallback != null ? errorCallback : other.errorCall back), scheduleMicrotask: ((__x169) => DEVC$RT.cast(__x169, dynamic, __t164, "Co mpositeCast", """line 156, column 26 of dart:async/zone.dart: """, __x169 is __t 164, false))(scheduleMicrotask != null ? scheduleMicrotask : other.scheduleMicro task), createTimer: ((__x176) => DEVC$RT.cast(__x176, dynamic, __t170, "Composit eCast", """line 159, column 21 of dart:async/zone.dart: """, __x176 is __t170, f alse))(createTimer != null ? createTimer : other.createTimer), createPeriodicTim er: ((__x184) => DEVC$RT.cast(__x184, dynamic, __t177, "CompositeCast", """line 160, column 28 of dart:async/zone.dart: """, __x184 is __t177, false))(createPer iodicTimer != null ? createPeriodicTimer : other.createPeriodicTimer), print: (( __x190) => DEVC$RT.cast(__x190, dynamic, __t185, "CompositeCast", """line 163, c olumn 15 of dart:async/zone.dart: """, __x190 is __t185, false))(print != null ? print : other.print), fork: ((__x197) => DEVC$RT.cast(__x197, dynamic, __t191, "CompositeCast", """line 164, column 13 of dart:async/zone.dart: """, __x197 is __t191, false))(fork != null ? fork : other.fork)); 33 return new ZoneSpecification(handleUncaughtError: ((__x104) => DEVC$RT.cast(__x1 04, dynamic, __t98, "CompositeCast", """line 138, column 28 of dart:async/zone.d art: """, __x104 is __t98, false))(handleUncaughtError != null ? handleUncaughtE rror : other.handleUncaughtError), run: ((__x110) => DEVC$RT.cast(__x110, dynami c, __t105, "CompositeCast", """line 141, column 12 of dart:async/zone.dart: """, __x110 is __t105, false))(run != null ? run : other.run), runUnary: ((__x118) = > DEVC$RT.cast(__x118, dynamic, __t111, "CompositeCast", """line 142, column 17 of dart:async/zone.dart: """, __x118 is __t111, false))(runUnary != null ? runUn ary : other.runUnary), runBinary: ((__x128) => DEVC$RT.cast(__x128, dynamic, __t 119, "CompositeCast", """line 143, column 18 of dart:async/zone.dart: """, __x12 8 is __t119, false))(runBinary != null ? runBinary : other.runBinary), registerC allback: ((__x135) => DEVC$RT.cast(__x135, dynamic, __t129, "CompositeCast", """ line 144, column 25 of dart:async/zone.dart: """, __x135 is __t129, false))(regi sterCallback != null ? registerCallback : other.registerCallback), registerUnary Callback: ((__x144) => DEVC$RT.cast(__x144, dynamic, __t136, "CompositeCast", "" "line 147, column 30 of dart:async/zone.dart: """, __x144 is __t136, false))(reg isterUnaryCallback != null ? registerUnaryCallback : other.registerUnaryCallback ), registerBinaryCallback: ((__x155) => DEVC$RT.cast(__x155, dynamic, __t145, "C ompositeCast", """line 150, column 31 of dart:async/zone.dart: """, __x155 is __ t145, false))(registerBinaryCallback != null ? registerBinaryCallback : other.re gisterBinaryCallback), errorCallback: ((__x162) => DEVC$RT.cast(__x162, dynamic, __t156, "CompositeCast", """line 153, column 22 of dart:async/zone.dart: """, _ _x162 is __t156, false))(errorCallback != null ? errorCallback : other.errorCall back), scheduleMicrotask: ((__x168) => DEVC$RT.cast(__x168, dynamic, __t163, "Co mpositeCast", """line 156, column 26 of dart:async/zone.dart: """, __x168 is __t 163, false))(scheduleMicrotask != null ? scheduleMicrotask : other.scheduleMicro task), createTimer: ((__x175) => DEVC$RT.cast(__x175, dynamic, __t169, "Composit eCast", """line 159, column 21 of dart:async/zone.dart: """, __x175 is __t169, f alse))(createTimer != null ? createTimer : other.createTimer), createPeriodicTim er: ((__x183) => DEVC$RT.cast(__x183, dynamic, __t176, "CompositeCast", """line 160, column 28 of dart:async/zone.dart: """, __x183 is __t176, false))(createPer iodicTimer != null ? createPeriodicTimer : other.createPeriodicTimer), print: (( __x189) => DEVC$RT.cast(__x189, dynamic, __t184, "CompositeCast", """line 163, c olumn 15 of dart:async/zone.dart: """, __x189 is __t184, false))(print != null ? print : other.print), fork: ((__x196) => DEVC$RT.cast(__x196, dynamic, __t190, "CompositeCast", """line 164, column 13 of dart:async/zone.dart: """, __x196 is __t190, 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
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 ((__x198) => DEVC$RT.cast(__x198, dynamic, __t135, "DynamicCast", """lin e 522, column 12 of dart:async/zone.dart: """, __x198 is __t135, true))((impleme ntation.function)(implZone, _parentDelegate(implZone), zone, f)); 153 return ((__x197) => DEVC$RT.cast(__x197, dynamic, __t134, "DynamicCast", """lin e 522, column 12 of dart:async/zone.dart: """, __x197 is __t134, true))((impleme ntation.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 ((__x199) => DEVC$RT.cast(__x199, dynamic, __t143, "DynamicCast", """lin e 529, column 12 of dart:async/zone.dart: """, __x199 is __t143, true))((impleme ntation.function)(implZone, _parentDelegate(implZone), zone, f)); 158 return ((__x198) => DEVC$RT.cast(__x198, dynamic, __t142, "DynamicCast", """lin e 529, column 12 of dart:async/zone.dart: """, __x198 is __t142, true))((impleme ntation.function)(implZone, _parentDelegate(implZone), zone, 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 ((__x200) => DEVC$RT.cast(__x200, dynamic, __t153, "DynamicCast", """lin e 536, column 12 of dart:async/zone.dart: """, __x200 is __t153, true))((impleme ntation.function)(implZone, _parentDelegate(implZone), zone, f)); 163 return ((__x199) => DEVC$RT.cast(__x199, dynamic, __t152, "DynamicCast", """lin e 536, column 12 of dart:async/zone.dart: """, __x199 is __t152, true))((impleme ntation.function)(implZone, _parentDelegate(implZone), zone, 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 ((__x201) => DEVC$RT.cast(__x201, dynamic, AsyncError, "DynamicCast", "" "line 544, column 12 of dart:async/zone.dart: """, __x201 is AsyncError, true))( (implementation.function)(implZone, _parentDelegate(implZone), zone, error, stac kTrace)); 169 return ((__x200) => DEVC$RT.cast(__x200, dynamic, AsyncError, "DynamicCast", "" "line 544, column 12 of dart:async/zone.dart: """, __x200 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 ((__x202) => DEVC$RT.cast(__x202, dynamic, Timer, "DynamicCast", """line 558, column 12 of dart:async/zone.dart: """, __x202 is Timer, true))((implement ation.function)(implZone, _parentDelegate(implZone), zone, duration, f)); 179 return ((__x201) => DEVC$RT.cast(__x201, dynamic, Timer, "DynamicCast", """line 558, column 12 of dart:async/zone.dart: """, __x201 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 ((__x203) => DEVC$RT.cast(__x203, dynamic, Timer, "DynamicCast", """line 565, column 12 of dart:async/zone.dart: """, __x203 is Timer, true))((implement ation.function)(implZone, _parentDelegate(implZone), zone, period, f)); 184 return ((__x202) => DEVC$RT.cast(__x202, dynamic, Timer, "DynamicCast", """line 565, column 12 of dart:async/zone.dart: """, __x202 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 ((__x204) => DEVC$RT.cast(__x204, dynamic, Zone, "DynamicCast", """line 580, column 12 of dart:async/zone.dart: """, __x204 is Zone, true))((implementat ion.function)(implZone, _parentDelegate(implZone), zone, specification, zoneValu es)); 194 return ((__x203) => DEVC$RT.cast(__x203, dynamic, Zone, "DynamicCast", """line 580, column 12 of dart:async/zone.dart: """, __x203 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;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ((__x205) => DEVC$RT.cast(__x205, dynamic, Zone, "DynamicCast", """line 787, column 12 of dart:async/zone.dart: """, __x205 is Zone, true))((implementat ion.function)(implementation.zone, parentDelegate, this, specification, zoneValu es)); 334 return ((__x204) => DEVC$RT.cast(__x204, dynamic, Zone, "DynamicCast", """line 787, column 12 of dart:async/zone.dart: """, __x204 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 ((__x206) => DEVC$RT.cast(__x206, dynamic, __t135, "DynamicCast", """lin e 820, column 12 of dart:async/zone.dart: """, __x206 is __t135, true))((impleme ntation.function)(implementation.zone, parentDelegate, this, f)); 354 return ((__x205) => DEVC$RT.cast(__x205, dynamic, __t134, "DynamicCast", """lin e 820, column 12 of dart:async/zone.dart: """, __x205 is __t134, true))((impleme ntation.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 ((__x207) => DEVC$RT.cast(__x207, dynamic, __t143, "DynamicCast", """lin e 828, column 12 of dart:async/zone.dart: """, __x207 is __t143, true))((impleme ntation.function)(implementation.zone, parentDelegate, this, f)); 359 return ((__x206) => DEVC$RT.cast(__x206, dynamic, __t142, "DynamicCast", """lin e 828, column 12 of dart:async/zone.dart: """, __x206 is __t142, true))((impleme ntation.function)(implementation.zone, parentDelegate, this, 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 ((__x208) => DEVC$RT.cast(__x208, dynamic, __t153, "DynamicCast", """lin e 836, column 12 of dart:async/zone.dart: """, __x208 is __t153, true))((impleme ntation.function)(implementation.zone, parentDelegate, this, f)); 364 return ((__x207) => DEVC$RT.cast(__x207, dynamic, __t152, "DynamicCast", """lin e 836, column 12 of dart:async/zone.dart: """, __x207 is __t152, true))((impleme ntation.function)(implementation.zone, parentDelegate, this, 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 ((__x209) => DEVC$RT.cast(__x209, dynamic, AsyncError, "DynamicCast", "" "line 846, column 12 of dart:async/zone.dart: """, __x209 is AsyncError, true))( (implementation.function)(implementationZone, parentDelegate, this, error, stack Trace)); 371 return ((__x208) => DEVC$RT.cast(__x208, dynamic, AsyncError, "DynamicCast", "" "line 846, column 12 of dart:async/zone.dart: """, __x208 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 ((__x210) => DEVC$RT.cast(__x210, dynamic, Timer, "DynamicCast", """line 862, column 12 of dart:async/zone.dart: """, __x210 is Timer, true))((implement ation.function)(implementation.zone, parentDelegate, this, duration, f)); 381 return ((__x209) => DEVC$RT.cast(__x209, dynamic, Timer, "DynamicCast", """line 862, column 12 of dart:async/zone.dart: """, __x209 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 ((__x211) => DEVC$RT.cast(__x211, dynamic, Timer, "DynamicCast", """line 870, column 12 of dart:async/zone.dart: """, __x211 is Timer, true))((implement ation.function)(implementation.zone, parentDelegate, this, duration, f)); 386 return ((__x210) => DEVC$RT.cast(__x210, dynamic, Timer, "DynamicCast", """line 870, column 12 of dart:async/zone.dart: """, __x210 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
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 = ((__x214) => DEVC$RT.cast(__x214, __t143, __t212, "CompositeCast", "" "line 962, column 16 of dart:async/zone.dart: """, __x214 is __t212, false))(zon e.bindUnaryCallback(callback)); 455 callback = ((__x213) => DEVC$RT.cast(__x213, __t142, __t211, "CompositeCast", "" "line 962, column 16 of dart:async/zone.dart: """, __x213 is __t211, false))(zon e.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
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, __t143, "ImplicitCa st", """line 1228, column 37 of dart:async/zone.dart: """, onError is __t143, tr ue), error); 636 return self.parent.runUnary(DEVC$RT.cast(onError, Function, __t142, "ImplicitCa st", """line 1228, column 37 of dart:async/zone.dart: """, onError is __t142, tr ue), 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 __t99(Zone __u100, ZoneDelegate __u101, Zone __u102, dynamic __ u103, StackTrace __u104); 663 typedef dynamic __t98(Zone __u99, ZoneDelegate __u100, Zone __u101, dynamic __u 102, StackTrace __u103);
664 typedef dynamic __t106(Zone __u107, ZoneDelegate __u108, Zone __u109, dynamic _ _u110()); 664 typedef dynamic __t105(Zone __u106, ZoneDelegate __u107, Zone __u108, dynamic _ _u109());
665 typedef dynamic __t112(Zone __u113, ZoneDelegate __u114, Zone __u115, dynamic _ _u116(dynamic __u117), dynamic __u118); 665 typedef dynamic __t111(Zone __u112, ZoneDelegate __u113, Zone __u114, dynamic _ _u115(dynamic __u116), dynamic __u117);
666 typedef dynamic __t120(Zone __u121, ZoneDelegate __u122, Zone __u123, dynamic _ _u124(dynamic __u125, dynamic __u126), dynamic __u127, dynamic __u128); 666 typedef dynamic __t119(Zone __u120, ZoneDelegate __u121, Zone __u122, dynamic _ _u123(dynamic __u124, dynamic __u125), dynamic __u126, dynamic __u127);
667 typedef dynamic __t135(); 667 typedef dynamic __t134();
668 typedef __t135 __t130(Zone __u131, ZoneDelegate __u132, Zone __u133, dynamic __ u134()); 668 typedef __t134 __t129(Zone __u130, ZoneDelegate __u131, Zone __u132, dynamic __ u133());
669 typedef dynamic __t143(dynamic __u144); 669 typedef dynamic __t142(dynamic __u143);
670 typedef __t143 __t137(Zone __u138, ZoneDelegate __u139, Zone __u140, dynamic __ u141(dynamic __u142)); 670 typedef __t142 __t136(Zone __u137, ZoneDelegate __u138, Zone __u139, dynamic __ u140(dynamic __u141));
671 typedef dynamic __t153(dynamic __u154, dynamic __u155); 671 typedef dynamic __t152(dynamic __u153, dynamic __u154);
672 typedef __t153 __t146(Zone __u147, ZoneDelegate __u148, Zone __u149, dynamic __ u150(dynamic __u151, dynamic __u152)); 672 typedef __t152 __t145(Zone __u146, ZoneDelegate __u147, Zone __u148, dynamic __ u149(dynamic __u150, dynamic __u151));
673 typedef AsyncError __t157(Zone __u158, ZoneDelegate __u159, Zone __u160, Object __u161, StackTrace __u162); 673 typedef AsyncError __t156(Zone __u157, ZoneDelegate __u158, Zone __u159, Object __u160, StackTrace __u161);
674 typedef void __t164(Zone __u165, ZoneDelegate __u166, Zone __u167, dynamic __u1 68()); 674 typedef void __t163(Zone __u164, ZoneDelegate __u165, Zone __u166, dynamic __u1 67());
675 typedef Timer __t170(Zone __u171, ZoneDelegate __u172, Zone __u173, Duration __ u174, void __u175()); 675 typedef Timer __t169(Zone __u170, ZoneDelegate __u171, Zone __u172, Duration __ u173, void __u174());
676 typedef Timer __t177(Zone __u178, ZoneDelegate __u179, Zone __u180, Duration __ u181, void __u182(Timer __u183)); 676 typedef Timer __t176(Zone __u177, ZoneDelegate __u178, Zone __u179, Duration __ u180, void __u181(Timer __u182));
677 typedef void __t185(Zone __u186, ZoneDelegate __u187, Zone __u188, String __u18 9); 677 typedef void __t184(Zone __u185, ZoneDelegate __u186, Zone __u187, String __u18 8);
678 typedef Zone __t191(Zone __u192, ZoneDelegate __u193, Zone __u194, ZoneSpecific ation __u195, Map<dynamic, dynamic> __u196); 678 typedef Zone __t190(Zone __u191, ZoneDelegate __u192, Zone __u193, ZoneSpecific ation __u194, Map<dynamic, dynamic> __u195);
679 typedef void __t212(Timer __u213); 679 typedef void __t211(Timer __u212);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698