feat(reflector): added a method to get type's interfaces

This commit is contained in:
vsavkin
2015-05-27 08:07:11 -07:00
parent 2c25055828
commit 34d75e8918
5 changed files with 41 additions and 3 deletions

View File

@ -20,6 +20,8 @@ class RecordingReflectionCapabilities implements ReflectionCapabilities {
List<List> parameters(typeOrFunc) => _notImplemented('parameters');
List<List> interfaces(typeOrFunc) => _notImplemented('interfaces');
List annotations(typeOrFunc) => _notImplemented('annotations');
GetterFn getter(String name) {