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
I think that it would be a nice feature to let the user know what properties/methods are defined but unused, this would be done doing so by underlining the method/property with a green underline.
This would more than likely only affect private properties and methods. Here is an example:
classMyClass{// Warning saying that "This item is never used"privatemyString1: string;// Warning saying that "This item has been assigned to but is never used"privatemyString2: string='abc123';// No Warning since this could be used anywhere (such as an external library) publicmyString3: string='123456';// Warning saying that "This item is never used"privatemyMethod1(): void{}// No Warning since this could be used anywhere (such as an external library) publicmyMethod2(): void{}}classMyClass2extendsMyClass{}
TypeScript Version: 1.8.10
I think that it would be a nice feature to let the user know what properties/methods are defined but unused, this would be done doing so by underlining the method/property with a green underline.
This would more than likely only affect
privateproperties and methods. Here is an example: