We should able to inject items by their Constructor name. Target Code: ``` class AppModel {...}; ... controller.addModel(new AppModel()); ... controller.addListener('event', [ ('AppModel') => {} ]); ```
We should able to inject items by their Constructor name.
Target Code: