本文整理了Java中com.sun.tools.javac.main.JavaCompiler.enterTreesIfNeeded()
方法的一些代码示例,展示了JavaCompiler.enterTreesIfNeeded()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JavaCompiler.enterTreesIfNeeded()
方法的具体详情如下:
包路径:com.sun.tools.javac.main.JavaCompiler
类名称:JavaCompiler
方法名:enterTreesIfNeeded
[英]Enter the symbols found in a list of parse trees if the compilation is expected to proceed beyond anno processing into attr. As a side-effect, this puts elements on the "todo" list. Also stores a list of all top level classes in rootClasses.
[中]如果编译预期将在anno处理之后继续到attr中,请输入在解析树列表中找到的符号。作为副作用,这会将元素放在“待办事项”列表上。还存储根类中所有顶级类的列表。
代码示例来源:origin: org.kohsuke.sorcerer/sorcerer-javac
compiler.enterTreesIfNeeded(roots);
代码示例来源:origin: konsoletyper/teavm-javac
compiler.enterTreesIfNeeded(roots);
内容来源于网络,如有侵权,请联系作者删除!