redstone-dart / redstone

A metadata driven microframework for Dart.
http://redstone-dart.github.io/redstone
MIT License
342 stars 42 forks source link

_scanLibrary should also consider exports #184

Open Pacane opened 7 years ago

Pacane commented 7 years ago

Because

given user_service.dart has groups/interceptors,

and my_lib.dart is

library my_lib;

export 'user_service.dart';

the setUp method doesn't pick nested groups in there.