top / index / prev / next / target / source
日記形式でつづる いがぴょんコラム ウェブページです。
http://www.ibm.com/devel...ary/os-ast/
org.eclipse.jdt.core.compiler
http://help.eclipse.org/...options.htm
ASTParser parser = ASTParser.newParser(AST.JLS2); parser.setKind(ASTParser.K_COMPILATION_UNIT); parser.setSource(sourceString.toCharArray()); CompilationUnit node = (CompilationUnit) parser.createAST(null);
p6実際のコード2 org.eclipse.jdt.internal.compiler.Compiler
Compiler compiler = new Compiler(new NameEnvironmentImpl(unit), DefaultErrorHandlingPolicies.proceedWithAllProblems(), settings,requestor,new Default\ ProblemFactory(Locale.getDefault())); compiler.compile(new ICompilationUnit[] { unit });
http://www.masatom.in/pu...5ASTParser/
p7もっとメモ Eclipse JDT でバッチ・コンパイル http://www.eclipse.org/f...p/m/657704/
ASTParser の JavaDoc http://help.eclipse.org/...Parser.html
Last modified: $Date: 2018-04-18 $