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
classA{}container.get(A);// now errors out because container wasn't set, or it doesn't have @Service()
@Service()classBase{}classSubextendsBase{}container.get(Sub);// now errors out because container wasn't set, or it doesn't have @Service()
Is there any reason why we don't allow like in 0.8.0 ability to instantiate a class without the @Service part ?