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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: test/dart_codegen/expect/async/zone.dart
diff --git a/test/dart_codegen/expect/async/zone.dart b/test/dart_codegen/expect/async/zone.dart
index 84fe27d8c60b194e60c8450ca62a48896b56f3ba..91c30f48630eb02f3b83d6ab1c3225a16d80664c 100644
--- a/test/dart_codegen/expect/async/zone.dart
+++ b/test/dart_codegen/expect/async/zone.dart
@@ -18,7 +18,7 @@ part of dart.async;
class AsyncError implements Error {final error;
final StackTrace stackTrace;
AsyncError(this.error, this.stackTrace);
- String toString() => ((__x98) => DEVC$RT.cast(__x98, dynamic, String, "DynamicCast", """line 46, column 24 of dart:async/zone.dart: """, __x98 is String, true))(error.toString());
+ String toString() => error.toString();
}
class _ZoneFunction {final _Zone zone;
final Function function;
@@ -30,7 +30,7 @@ dynamic handleUncaughtError(Zone self, ZoneDelegate parent, Zone zone, error, St
factory ZoneSpecification.from(ZoneSpecification other, {
dynamic handleUncaughtError(Zone self, ZoneDelegate parent, Zone zone, error, StackTrace stackTrace) : null, dynamic run(Zone self, ZoneDelegate parent, Zone zone, f()) : null, dynamic runUnary(Zone self, ZoneDelegate parent, Zone zone, f(arg), arg) : null, dynamic runBinary(Zone self, ZoneDelegate parent, Zone zone, f(arg1, arg2), arg1, arg2) : null, ZoneCallback registerCallback(Zone self, ZoneDelegate parent, Zone zone, f()) : null, ZoneUnaryCallback registerUnaryCallback(Zone self, ZoneDelegate parent, Zone zone, f(arg)) : null, ZoneBinaryCallback registerBinaryCallback(Zone self, ZoneDelegate parent, Zone zone, f(arg1, arg2)) : null, AsyncError errorCallback(Zone self, ZoneDelegate parent, Zone zone, Object 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)) : null, void print(Zone self, ZoneDelegate parent, Zone zone, String line) : null, Zone fork(Zone self, ZoneDelegate parent, Zone zone, ZoneSpecification specification, Map zoneValues) : null}
) {
-return new ZoneSpecification(handleUncaughtError: ((__x105) => DEVC$RT.cast(__x105, dynamic, __t99, "CompositeCast", """line 138, column 28 of dart:async/zone.dart: """, __x105 is __t99, false))(handleUncaughtError != null ? handleUncaughtError : other.handleUncaughtError), run: ((__x111) => DEVC$RT.cast(__x111, dynamic, __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 ? runUnary : other.runUnary), runBinary: ((__x129) => DEVC$RT.cast(__x129, dynamic, __t120, "CompositeCast", """line 143, column 18 of dart:async/zone.dart: """, __x129 is __t120, false))(runBinary != null ? runBinary : other.runBinary), registerCallback: ((__x136) => DEVC$RT.cast(__x136, dynamic, __t130, "CompositeCast", """line 144, column 25 of dart:async/zone.dart: """, __x136 is __t130, false))(registerCallback != null ? registerCallback : other.registerCallback), registerUnaryCallback: ((__x145) => DEVC$RT.cast(__x145, dynamic, __t137, "CompositeCast", """line 147, column 30 of dart:async/zone.dart: """, __x145 is __t137, false))(registerUnaryCallback != null ? registerUnaryCallback : other.registerUnaryCallback), registerBinaryCallback: ((__x156) => DEVC$RT.cast(__x156, dynamic, __t146, "CompositeCast", """line 150, column 31 of dart:async/zone.dart: """, __x156 is __t146, false))(registerBinaryCallback != null ? registerBinaryCallback : other.registerBinaryCallback), 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.errorCallback), scheduleMicrotask: ((__x169) => DEVC$RT.cast(__x169, dynamic, __t164, "CompositeCast", """line 156, column 26 of dart:async/zone.dart: """, __x169 is __t164, false))(scheduleMicrotask != null ? scheduleMicrotask : other.scheduleMicrotask), createTimer: ((__x176) => DEVC$RT.cast(__x176, dynamic, __t170, "CompositeCast", """line 159, column 21 of dart:async/zone.dart: """, __x176 is __t170, false))(createTimer != null ? createTimer : other.createTimer), createPeriodicTimer: ((__x184) => DEVC$RT.cast(__x184, dynamic, __t177, "CompositeCast", """line 160, column 28 of dart:async/zone.dart: """, __x184 is __t177, false))(createPeriodicTimer != null ? createPeriodicTimer : other.createPeriodicTimer), print: ((__x190) => DEVC$RT.cast(__x190, dynamic, __t185, "CompositeCast", """line 163, column 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));
+return new ZoneSpecification(handleUncaughtError: ((__x104) => DEVC$RT.cast(__x104, dynamic, __t98, "CompositeCast", """line 138, column 28 of dart:async/zone.dart: """, __x104 is __t98, false))(handleUncaughtError != null ? handleUncaughtError : other.handleUncaughtError), run: ((__x110) => DEVC$RT.cast(__x110, dynamic, __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 ? runUnary : other.runUnary), runBinary: ((__x128) => DEVC$RT.cast(__x128, dynamic, __t119, "CompositeCast", """line 143, column 18 of dart:async/zone.dart: """, __x128 is __t119, false))(runBinary != null ? runBinary : other.runBinary), registerCallback: ((__x135) => DEVC$RT.cast(__x135, dynamic, __t129, "CompositeCast", """line 144, column 25 of dart:async/zone.dart: """, __x135 is __t129, false))(registerCallback != null ? registerCallback : other.registerCallback), registerUnaryCallback: ((__x144) => DEVC$RT.cast(__x144, dynamic, __t136, "CompositeCast", """line 147, column 30 of dart:async/zone.dart: """, __x144 is __t136, false))(registerUnaryCallback != null ? registerUnaryCallback : other.registerUnaryCallback), registerBinaryCallback: ((__x155) => DEVC$RT.cast(__x155, dynamic, __t145, "CompositeCast", """line 150, column 31 of dart:async/zone.dart: """, __x155 is __t145, false))(registerBinaryCallback != null ? registerBinaryCallback : other.registerBinaryCallback), 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.errorCallback), scheduleMicrotask: ((__x168) => DEVC$RT.cast(__x168, dynamic, __t163, "CompositeCast", """line 156, column 26 of dart:async/zone.dart: """, __x168 is __t163, false))(scheduleMicrotask != null ? scheduleMicrotask : other.scheduleMicrotask), createTimer: ((__x175) => DEVC$RT.cast(__x175, dynamic, __t169, "CompositeCast", """line 159, column 21 of dart:async/zone.dart: """, __x175 is __t169, false))(createTimer != null ? createTimer : other.createTimer), createPeriodicTimer: ((__x183) => DEVC$RT.cast(__x183, dynamic, __t176, "CompositeCast", """line 160, column 28 of dart:async/zone.dart: """, __x183 is __t176, false))(createPeriodicTimer != null ? createPeriodicTimer : other.createPeriodicTimer), print: ((__x189) => DEVC$RT.cast(__x189, dynamic, __t184, "CompositeCast", """line 163, column 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));
}
HandleUncaughtErrorHandler get handleUncaughtError;
RunHandler get run;
@@ -150,23 +150,23 @@ _ZoneFunction implementation = _delegationTarget._runBinary;
ZoneCallback registerCallback(Zone zone, f()) {
_ZoneFunction implementation = _delegationTarget._registerCallback;
_Zone implZone = implementation.zone;
- return ((__x198) => DEVC$RT.cast(__x198, dynamic, __t135, "DynamicCast", """line 522, column 12 of dart:async/zone.dart: """, __x198 is __t135, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, f));
+ return ((__x197) => DEVC$RT.cast(__x197, dynamic, __t134, "DynamicCast", """line 522, column 12 of dart:async/zone.dart: """, __x197 is __t134, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, f));
}
ZoneUnaryCallback registerUnaryCallback(Zone zone, f(arg)) {
_ZoneFunction implementation = _delegationTarget._registerUnaryCallback;
_Zone implZone = implementation.zone;
- return ((__x199) => DEVC$RT.cast(__x199, dynamic, __t143, "DynamicCast", """line 529, column 12 of dart:async/zone.dart: """, __x199 is __t143, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, f));
+ return ((__x198) => DEVC$RT.cast(__x198, dynamic, __t142, "DynamicCast", """line 529, column 12 of dart:async/zone.dart: """, __x198 is __t142, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, f));
}
ZoneBinaryCallback registerBinaryCallback(Zone zone, f(arg1, arg2)) {
_ZoneFunction implementation = _delegationTarget._registerBinaryCallback;
_Zone implZone = implementation.zone;
- return ((__x200) => DEVC$RT.cast(__x200, dynamic, __t153, "DynamicCast", """line 536, column 12 of dart:async/zone.dart: """, __x200 is __t153, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, f));
+ return ((__x199) => DEVC$RT.cast(__x199, dynamic, __t152, "DynamicCast", """line 536, column 12 of dart:async/zone.dart: """, __x199 is __t152, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, f));
}
AsyncError errorCallback(Zone zone, Object error, StackTrace stackTrace) {
_ZoneFunction implementation = _delegationTarget._errorCallback;
_Zone implZone = implementation.zone;
if (identical(implZone, _ROOT_ZONE)) return null;
- 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, stackTrace));
+ 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, stackTrace));
}
void scheduleMicrotask(Zone zone, f()) {
_ZoneFunction implementation = _delegationTarget._scheduleMicrotask;
@@ -176,12 +176,12 @@ _ZoneFunction implementation = _delegationTarget._scheduleMicrotask;
Timer createTimer(Zone zone, Duration duration, void f()) {
_ZoneFunction implementation = _delegationTarget._createTimer;
_Zone implZone = implementation.zone;
- return ((__x202) => DEVC$RT.cast(__x202, dynamic, Timer, "DynamicCast", """line 558, column 12 of dart:async/zone.dart: """, __x202 is Timer, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, duration, f));
+ return ((__x201) => DEVC$RT.cast(__x201, dynamic, Timer, "DynamicCast", """line 558, column 12 of dart:async/zone.dart: """, __x201 is Timer, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, duration, f));
}
Timer createPeriodicTimer(Zone zone, Duration period, void f(Timer timer)) {
_ZoneFunction implementation = _delegationTarget._createPeriodicTimer;
_Zone implZone = implementation.zone;
- return ((__x203) => DEVC$RT.cast(__x203, dynamic, Timer, "DynamicCast", """line 565, column 12 of dart:async/zone.dart: """, __x203 is Timer, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, period, f));
+ return ((__x202) => DEVC$RT.cast(__x202, dynamic, Timer, "DynamicCast", """line 565, column 12 of dart:async/zone.dart: """, __x202 is Timer, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, period, f));
}
void print(Zone zone, String line) {
_ZoneFunction implementation = _delegationTarget._print;
@@ -191,7 +191,7 @@ _ZoneFunction implementation = _delegationTarget._print;
Zone fork(Zone zone, ZoneSpecification specification, Map zoneValues) {
_ZoneFunction implementation = _delegationTarget._fork;
_Zone implZone = implementation.zone;
- return ((__x204) => DEVC$RT.cast(__x204, dynamic, Zone, "DynamicCast", """line 580, column 12 of dart:async/zone.dart: """, __x204 is Zone, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, specification, zoneValues));
+ return ((__x203) => DEVC$RT.cast(__x203, dynamic, Zone, "DynamicCast", """line 580, column 12 of dart:async/zone.dart: """, __x203 is Zone, true))((implementation.function)(implZone, _parentDelegate(implZone), zone, specification, zoneValues));
}
}
abstract class _Zone implements Zone {const _Zone();
@@ -331,7 +331,7 @@ ZoneSpecification specification, Map zoneValues}
) {
_ZoneFunction implementation = this._fork;
assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(implementation.zone);
- return ((__x205) => DEVC$RT.cast(__x205, dynamic, Zone, "DynamicCast", """line 787, column 12 of dart:async/zone.dart: """, __x205 is Zone, true))((implementation.function)(implementation.zone, parentDelegate, this, specification, zoneValues));
+ return ((__x204) => DEVC$RT.cast(__x204, dynamic, Zone, "DynamicCast", """line 787, column 12 of dart:async/zone.dart: """, __x204 is Zone, true))((implementation.function)(implementation.zone, parentDelegate, this, specification, zoneValues));
}
dynamic run(f()) {
_ZoneFunction implementation = this._run;
@@ -351,24 +351,24 @@ _ZoneFunction implementation = this._runBinary;
ZoneCallback registerCallback(f()) {
_ZoneFunction implementation = this._registerCallback;
assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(implementation.zone);
- return ((__x206) => DEVC$RT.cast(__x206, dynamic, __t135, "DynamicCast", """line 820, column 12 of dart:async/zone.dart: """, __x206 is __t135, true))((implementation.function)(implementation.zone, parentDelegate, this, f));
+ return ((__x205) => DEVC$RT.cast(__x205, dynamic, __t134, "DynamicCast", """line 820, column 12 of dart:async/zone.dart: """, __x205 is __t134, true))((implementation.function)(implementation.zone, parentDelegate, this, f));
}
ZoneUnaryCallback registerUnaryCallback(f(arg)) {
_ZoneFunction implementation = this._registerUnaryCallback;
assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(implementation.zone);
- return ((__x207) => DEVC$RT.cast(__x207, dynamic, __t143, "DynamicCast", """line 828, column 12 of dart:async/zone.dart: """, __x207 is __t143, true))((implementation.function)(implementation.zone, parentDelegate, this, f));
+ return ((__x206) => DEVC$RT.cast(__x206, dynamic, __t142, "DynamicCast", """line 828, column 12 of dart:async/zone.dart: """, __x206 is __t142, true))((implementation.function)(implementation.zone, parentDelegate, this, f));
}
ZoneBinaryCallback registerBinaryCallback(f(arg1, arg2)) {
_ZoneFunction implementation = this._registerBinaryCallback;
assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(implementation.zone);
- return ((__x208) => DEVC$RT.cast(__x208, dynamic, __t153, "DynamicCast", """line 836, column 12 of dart:async/zone.dart: """, __x208 is __t153, true))((implementation.function)(implementation.zone, parentDelegate, this, f));
+ return ((__x207) => DEVC$RT.cast(__x207, dynamic, __t152, "DynamicCast", """line 836, column 12 of dart:async/zone.dart: """, __x207 is __t152, true))((implementation.function)(implementation.zone, parentDelegate, this, f));
}
AsyncError errorCallback(Object error, StackTrace stackTrace) {
final _ZoneFunction implementation = this._errorCallback;
assert (implementation != null); final Zone implementationZone = implementation.zone;
if (identical(implementationZone, _ROOT_ZONE)) return null;
final ZoneDelegate parentDelegate = _parentDelegate(DEVC$RT.cast(implementationZone, Zone, _Zone, "ImplicitCast", """line 845, column 57 of dart:async/zone.dart: """, implementationZone is _Zone, true));
- 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, stackTrace));
+ 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, stackTrace));
}
void scheduleMicrotask(void f()) {
_ZoneFunction implementation = this._scheduleMicrotask;
@@ -378,12 +378,12 @@ _ZoneFunction implementation = this._scheduleMicrotask;
Timer createTimer(Duration duration, void f()) {
_ZoneFunction implementation = this._createTimer;
assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(implementation.zone);
- return ((__x210) => DEVC$RT.cast(__x210, dynamic, Timer, "DynamicCast", """line 862, column 12 of dart:async/zone.dart: """, __x210 is Timer, true))((implementation.function)(implementation.zone, parentDelegate, this, duration, f));
+ return ((__x209) => DEVC$RT.cast(__x209, dynamic, Timer, "DynamicCast", """line 862, column 12 of dart:async/zone.dart: """, __x209 is Timer, true))((implementation.function)(implementation.zone, parentDelegate, this, duration, f));
}
Timer createPeriodicTimer(Duration duration, void f(Timer timer)) {
_ZoneFunction implementation = this._createPeriodicTimer;
assert (implementation != null); ZoneDelegate parentDelegate = _parentDelegate(implementation.zone);
- return ((__x211) => DEVC$RT.cast(__x211, dynamic, Timer, "DynamicCast", """line 870, column 12 of dart:async/zone.dart: """, __x211 is Timer, true))((implementation.function)(implementation.zone, parentDelegate, this, duration, f));
+ return ((__x210) => DEVC$RT.cast(__x210, dynamic, Timer, "DynamicCast", """line 870, column 12 of dart:async/zone.dart: """, __x210 is Timer, true))((implementation.function)(implementation.zone, parentDelegate, this, duration, f));
}
void print(String line) {
_ZoneFunction implementation = this._print;
@@ -452,7 +452,7 @@ callback = zone.bindCallback(callback);
}
Timer _rootCreatePeriodicTimer(Zone self, ZoneDelegate parent, Zone zone, Duration duration, void callback(Timer timer)) {
if (!identical(_ROOT_ZONE, zone)) {
-callback = ((__x214) => DEVC$RT.cast(__x214, __t143, __t212, "CompositeCast", """line 962, column 16 of dart:async/zone.dart: """, __x214 is __t212, false))(zone.bindUnaryCallback(callback));
+callback = ((__x213) => DEVC$RT.cast(__x213, __t142, __t211, "CompositeCast", """line 962, column 16 of dart:async/zone.dart: """, __x213 is __t211, false))(zone.bindUnaryCallback(callback));
}
return Timer._createPeriodicTimer(duration, callback);
}
@@ -633,7 +633,7 @@ try {
if (onError is ZoneBinaryCallback) {
return self.parent.runBinary(onError, error, stackTrace);
}
- return self.parent.runUnary(DEVC$RT.cast(onError, Function, __t143, "ImplicitCast", """line 1228, column 37 of dart:async/zone.dart: """, onError is __t143, true), error);
+ return self.parent.runUnary(DEVC$RT.cast(onError, Function, __t142, "ImplicitCast", """line 1228, column 37 of dart:async/zone.dart: """, onError is __t142, true), error);
}
catch (e, s) {
if (identical(e, error)) {
@@ -660,20 +660,20 @@ return zone.runGuarded(body);
return zone.run(body);
}
}
- typedef dynamic __t99(Zone __u100, ZoneDelegate __u101, Zone __u102, dynamic __u103, StackTrace __u104);
- typedef dynamic __t106(Zone __u107, ZoneDelegate __u108, Zone __u109, dynamic __u110());
- typedef dynamic __t112(Zone __u113, ZoneDelegate __u114, Zone __u115, dynamic __u116(dynamic __u117), dynamic __u118);
- typedef dynamic __t120(Zone __u121, ZoneDelegate __u122, Zone __u123, dynamic __u124(dynamic __u125, dynamic __u126), dynamic __u127, dynamic __u128);
- typedef dynamic __t135();
- typedef __t135 __t130(Zone __u131, ZoneDelegate __u132, Zone __u133, dynamic __u134());
- typedef dynamic __t143(dynamic __u144);
- typedef __t143 __t137(Zone __u138, ZoneDelegate __u139, Zone __u140, dynamic __u141(dynamic __u142));
- typedef dynamic __t153(dynamic __u154, dynamic __u155);
- typedef __t153 __t146(Zone __u147, ZoneDelegate __u148, Zone __u149, dynamic __u150(dynamic __u151, dynamic __u152));
- typedef AsyncError __t157(Zone __u158, ZoneDelegate __u159, Zone __u160, Object __u161, StackTrace __u162);
- typedef void __t164(Zone __u165, ZoneDelegate __u166, Zone __u167, dynamic __u168());
- typedef Timer __t170(Zone __u171, ZoneDelegate __u172, Zone __u173, Duration __u174, void __u175());
- typedef Timer __t177(Zone __u178, ZoneDelegate __u179, Zone __u180, Duration __u181, void __u182(Timer __u183));
- typedef void __t185(Zone __u186, ZoneDelegate __u187, Zone __u188, String __u189);
- typedef Zone __t191(Zone __u192, ZoneDelegate __u193, Zone __u194, ZoneSpecification __u195, Map<dynamic, dynamic> __u196);
- typedef void __t212(Timer __u213);
+ typedef dynamic __t98(Zone __u99, ZoneDelegate __u100, Zone __u101, dynamic __u102, StackTrace __u103);
+ typedef dynamic __t105(Zone __u106, ZoneDelegate __u107, Zone __u108, dynamic __u109());
+ typedef dynamic __t111(Zone __u112, ZoneDelegate __u113, Zone __u114, dynamic __u115(dynamic __u116), dynamic __u117);
+ typedef dynamic __t119(Zone __u120, ZoneDelegate __u121, Zone __u122, dynamic __u123(dynamic __u124, dynamic __u125), dynamic __u126, dynamic __u127);
+ typedef dynamic __t134();
+ typedef __t134 __t129(Zone __u130, ZoneDelegate __u131, Zone __u132, dynamic __u133());
+ typedef dynamic __t142(dynamic __u143);
+ typedef __t142 __t136(Zone __u137, ZoneDelegate __u138, Zone __u139, dynamic __u140(dynamic __u141));
+ typedef dynamic __t152(dynamic __u153, dynamic __u154);
+ typedef __t152 __t145(Zone __u146, ZoneDelegate __u147, Zone __u148, dynamic __u149(dynamic __u150, dynamic __u151));
+ typedef AsyncError __t156(Zone __u157, ZoneDelegate __u158, Zone __u159, Object __u160, StackTrace __u161);
+ typedef void __t163(Zone __u164, ZoneDelegate __u165, Zone __u166, dynamic __u167());
+ typedef Timer __t169(Zone __u170, ZoneDelegate __u171, Zone __u172, Duration __u173, void __u174());
+ typedef Timer __t176(Zone __u177, ZoneDelegate __u178, Zone __u179, Duration __u180, void __u181(Timer __u182));
+ typedef void __t184(Zone __u185, ZoneDelegate __u186, Zone __u187, String __u188);
+ typedef Zone __t190(Zone __u191, ZoneDelegate __u192, Zone __u193, ZoneSpecification __u194, Map<dynamic, dynamic> __u195);
+ typedef void __t211(Timer __u212);

Powered by Google App Engine
This is Rietveld 408576698