public static Map<String, List<List<CompileToken>>> tokenizeFile(String file){
try {
ANTLRFileStream stream = new ANTLRFileStream(file);
return visitor(stream).getTokens();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
Compiler.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:WAM
作者:
评论列表
文章目录