```bash jdk.compiler$ find ./ -type f -name '*.java' | xargs grep -w -l 'com.sun.tools.classfile' ``` Here's the list: jdk/src/jdk.compiler/share/classes/com/sun/tools/javac/code/TargetType.java jdk/src/jdk.compiler/share/classes/com/sun/tools/javac/code/TypeAnnotationPosition.java All the usage of 'com.sun.tools.classfile' are in comments
|