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
There are some cases where no-internal rule does not produce an error:
// extending internal class does not result in lint errorclassNewClassextendsInternalClass{}
// taking internal class constructor as an argument does not result in lint errorfunctiondoSomething(construct: new()=>InternalClass){// impl}// passing internal class constructor as an argument does not result in lint errordoSomething(InternalClass);
These are examples that I have encountered. There might be more cases where referencing internal APIs or types does not result in an error.
The text was updated successfully, but these errors were encountered:
There are some cases where
no-internal
rule does not produce an error:These are examples that I have encountered. There might be more cases where referencing internal APIs or types does not result in an error.
The text was updated successfully, but these errors were encountered: