From c785a1e474b4683bb13ec54f249f5684d83703ff Mon Sep 17 00:00:00 2001 From: Yegor Jbanov Date: Tue, 12 Jan 2016 09:52:17 -0800 Subject: [PATCH] fix(ddc): use dynamic types in reflection typedefs Closes #6437 --- modules/angular2/src/core/reflection/types.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/angular2/src/core/reflection/types.dart b/modules/angular2/src/core/reflection/types.dart index d1bc7fc9a6..2bc51af45c 100644 --- a/modules/angular2/src/core/reflection/types.dart +++ b/modules/angular2/src/core/reflection/types.dart @@ -1,5 +1,5 @@ library reflection.types; -typedef SetterFn(Object obj, value); -typedef GetterFn(Object obj); -typedef MethodFn(Object obj, List args); +typedef SetterFn(obj, value); +typedef GetterFn(obj); +typedef MethodFn(obj, List args);