X Tutup
Skip to content

Commit c785a1e

Browse files
committed
fix(ddc): use dynamic types in reflection typedefs
Closes #6437
1 parent 3adc472 commit c785a1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
library reflection.types;
22

3-
typedef SetterFn(Object obj, value);
4-
typedef GetterFn(Object obj);
5-
typedef MethodFn(Object obj, List args);
3+
typedef SetterFn(obj, value);
4+
typedef GetterFn(obj);
5+
typedef MethodFn(obj, List args);

0 commit comments

Comments
 (0)
X Tutup