com.sun.tools.javac.main.JavaCompiler.enterTreesIfNeeded()方法的使用及代码示例

x33g5p2x  于2022-01-22 转载在 其他  
字(0.8k)|赞(0)|评价(0)|浏览(121)

本文整理了Java中com.sun.tools.javac.main.JavaCompiler.enterTreesIfNeeded()方法的一些代码示例,展示了JavaCompiler.enterTreesIfNeeded()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JavaCompiler.enterTreesIfNeeded()方法的具体详情如下:
包路径:com.sun.tools.javac.main.JavaCompiler
类名称:JavaCompiler
方法名:enterTreesIfNeeded

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);

相关文章