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

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

Issue 1096583002: Reifier hookup (Closed) Base URL: git@github.com:dart-lang/dart-dev-compiler.git@master
Patch Set: Address comments 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
« no previous file with comments | « test/dart_codegen/expect/async/timer.dart ('k') | test/dart_codegen/expect/c/c.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
(...skipping 12 matching lines...) Expand all
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, __t82, "CompositeCast", """line 138, column 28 of dart:async/zone.dar t: """, __x88 is __t82, false))(handleUncaughtError != null ? handleUncaughtErro r : other.handleUncaughtError), run: ((__x94) => DEVC$RT.cast(__x94, dynamic, __ t89, "CompositeCast", """line 141, column 12 of dart:async/zone.dart: """, __x94 is __t89, false))(run != null ? run : other.run), runUnary: ((__x102) => DEVC$R T.cast(__x102, dynamic, __t95, "CompositeCast", """line 142, column 17 of dart:a sync/zone.dart: """, __x102 is __t95, false))(runUnary != null ? runUnary : othe r.runUnary), runBinary: ((__x112) => DEVC$RT.cast(__x112, dynamic, __t103, "Comp ositeCast", """line 143, column 18 of dart:async/zone.dart: """, __x112 is __t10 3, false))(runBinary != null ? runBinary : other.runBinary), registerCallback: ( (__x118) => DEVC$RT.cast(__x118, dynamic, __t113, "CompositeCast", """line 144, column 25 of dart:async/zone.dart: """, __x118 is __t113, false))(registerCallba ck != null ? registerCallback : other.registerCallback), registerUnaryCallback: ((__x125) => DEVC$RT.cast(__x125, dynamic, __t119, "CompositeCast", """line 147, column 30 of dart:async/zone.dart: """, __x125 is __t119, false))(registerUnary Callback != null ? registerUnaryCallback : other.registerUnaryCallback), registe rBinaryCallback: ((__x133) => DEVC$RT.cast(__x133, dynamic, __t126, "CompositeCa st", """line 150, column 31 of dart:async/zone.dart: """, __x133 is __t126, fals e))(registerBinaryCallback != null ? registerBinaryCallback : other.registerBina ryCallback), errorCallback: ((__x140) => DEVC$RT.cast(__x140, dynamic, __t134, " CompositeCast", """line 153, column 22 of dart:async/zone.dart: """, __x140 is _ _t134, false))(errorCallback != null ? errorCallback : other.errorCallback), sch eduleMicrotask: ((__x146) => DEVC$RT.cast(__x146, dynamic, __t141, "CompositeCas t", """line 156, column 26 of dart:async/zone.dart: """, __x146 is __t141, false ))(scheduleMicrotask != null ? scheduleMicrotask : other.scheduleMicrotask), cre ateTimer: ((__x153) => DEVC$RT.cast(__x153, dynamic, __t147, "CompositeCast", "" "line 159, column 21 of dart:async/zone.dart: """, __x153 is __t147, false))(cre ateTimer != null ? createTimer : other.createTimer), createPeriodicTimer: ((__x1 61) => DEVC$RT.cast(__x161, dynamic, __t154, "CompositeCast", """line 160, colum n 28 of dart:async/zone.dart: """, __x161 is __t154, false))(createPeriodicTimer != null ? createPeriodicTimer : other.createPeriodicTimer), print: ((__x167) => DEVC$RT.cast(__x167, dynamic, __t162, "CompositeCast", """line 163, column 15 o f dart:async/zone.dart: """, __x167 is __t162, false))(print != null ? print : o ther.print), fork: ((__x174) => DEVC$RT.cast(__x174, dynamic, __t168, "Composite Cast", """line 164, column 13 of dart:async/zone.dart: """, __x174 is __t168, fa lse))(fork != null ? fork : other.fork)); 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));
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 401 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 = ((__x191) => DEVC$RT.cast(__x191, ZoneUnaryCallback, __t189, "Composi teCast", """line 962, column 16 of dart:async/zone.dart: """, __x191 is __t189, false))(zone.bindUnaryCallback(callback)); 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));
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, __t192, "ImplicitCa st", """line 1228, column 37 of dart:async/zone.dart: """, onError is __t192, tr ue), error); 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);
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 __t82(Zone __u83, ZoneDelegate __u84, Zone __u85, dynamic __u86 , StackTrace __u87); 663 typedef dynamic __CastType82(Zone __u83, ZoneDelegate __u84, Zone __u85, dynami c __u86, StackTrace __u87);
664 typedef dynamic __t89(Zone __u90, ZoneDelegate __u91, Zone __u92, dynamic __u93 ()); 664 typedef dynamic __CastType89(Zone __u90, ZoneDelegate __u91, Zone __u92, dynami c __u93());
665 typedef dynamic __t95(Zone __u96, ZoneDelegate __u97, Zone __u98, dynamic __u99 (dynamic __u100), dynamic __u101); 665 typedef dynamic __CastType95(Zone __u96, ZoneDelegate __u97, Zone __u98, dynami c __u99(dynamic __u100), dynamic __u101);
666 typedef dynamic __t103(Zone __u104, ZoneDelegate __u105, Zone __u106, dynamic _ _u107(dynamic __u108, dynamic __u109), dynamic __u110, dynamic __u111); 666 typedef dynamic __CastType103(Zone __u104, ZoneDelegate __u105, Zone __u106, dy namic __u107(dynamic __u108, dynamic __u109), dynamic __u110, dynamic __u111);
667 typedef ZoneCallback __t113(Zone __u114, ZoneDelegate __u115, Zone __u116, dyna mic __u117()); 667 typedef ZoneCallback __CastType113(Zone __u114, ZoneDelegate __u115, Zone __u11 6, dynamic __u117());
668 typedef ZoneUnaryCallback __t119(Zone __u120, ZoneDelegate __u121, Zone __u122, dynamic __u123(dynamic __u124)); 668 typedef ZoneUnaryCallback __CastType119(Zone __u120, ZoneDelegate __u121, Zone __u122, dynamic __u123(dynamic __u124));
669 typedef ZoneBinaryCallback __t126(Zone __u127, ZoneDelegate __u128, Zone __u129 , dynamic __u130(dynamic __u131, dynamic __u132)); 669 typedef ZoneBinaryCallback __CastType126(Zone __u127, ZoneDelegate __u128, Zone __u129, dynamic __u130(dynamic __u131, dynamic __u132));
670 typedef AsyncError __t134(Zone __u135, ZoneDelegate __u136, Zone __u137, Object __u138, StackTrace __u139); 670 typedef AsyncError __CastType134(Zone __u135, ZoneDelegate __u136, Zone __u137, Object __u138, StackTrace __u139);
671 typedef void __t141(Zone __u142, ZoneDelegate __u143, Zone __u144, dynamic __u1 45()); 671 typedef void __CastType141(Zone __u142, ZoneDelegate __u143, Zone __u144, dynam ic __u145());
672 typedef Timer __t147(Zone __u148, ZoneDelegate __u149, Zone __u150, Duration __ u151, void __u152()); 672 typedef Timer __CastType147(Zone __u148, ZoneDelegate __u149, Zone __u150, Dura tion __u151, void __u152());
673 typedef Timer __t154(Zone __u155, ZoneDelegate __u156, Zone __u157, Duration __ u158, void __u159(Timer __u160)); 673 typedef Timer __CastType154(Zone __u155, ZoneDelegate __u156, Zone __u157, Dura tion __u158, void __u159(Timer __u160));
674 typedef void __t162(Zone __u163, ZoneDelegate __u164, Zone __u165, String __u16 6); 674 typedef void __CastType162(Zone __u163, ZoneDelegate __u164, Zone __u165, Strin g __u166);
675 typedef Zone __t168(Zone __u169, ZoneDelegate __u170, Zone __u171, ZoneSpecific ation __u172, Map<dynamic, dynamic> __u173); 675 typedef Zone __CastType168(Zone __u169, ZoneDelegate __u170, Zone __u171, ZoneS pecification __u172, Map<dynamic, dynamic> __u173);
676 typedef void __t189(Timer __u190); 676 typedef void __CastType189(Timer __u190);
677 typedef dynamic __t192(dynamic __u193); 677 typedef dynamic __CastType192(dynamic __u193);
OLDNEW
« no previous file with comments | « test/dart_codegen/expect/async/timer.dart ('k') | test/dart_codegen/expect/c/c.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698