You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the Injector is asked to resolve an identifier that references nonexistent (or non-required) class, the changes in Issue #11 cause it fail with an error related to availability of classReference.singleton rather than letting the developer know that the class was not found.
Current error message:
TypeError: 'null' is not an object (evaluating 'classDefinition.singleton')
It should instead tell the developer the class definition wasn't found.
Add better error handling and reporting for this situation.
The text was updated successfully, but these errors were encountered:
When the Injector is asked to resolve an identifier that references nonexistent (or non-required) class, the changes in Issue #11 cause it fail with an error related to availability of
classReference.singleton
rather than letting the developer know that the class was not found.Current error message:
TypeError: 'null' is not an object (evaluating 'classDefinition.singleton')
It should instead tell the developer the class definition wasn't found.
Add better error handling and reporting for this situation.
The text was updated successfully, but these errors were encountered: