Class CheckUnusedPrivateProperties

java.lang.Object
com.google.javascript.jscomp.lint.CheckUnusedPrivateProperties
All Implemented Interfaces:
CompilerPass, NodeTraversal.Callback

public class CheckUnusedPrivateProperties extends Object implements CompilerPass, NodeTraversal.Callback
This pass looks for properties that are never read. These can be properties created using "this", or static properties of constructors or interfaces. Explicitly ignored is the possibility that these properties may be indirectly referenced using "for-in" or "Object.keys".