2

我正在尝试使用 Eclipse ASTParser 来分析并在可能的情况下向某些类添加一些代码。我需要的信息之一需要绑定,但因为这是一个独立的项目(最终目标是一个命令行工具,独立于 eclipse)我不能拥有它们(requireBinding()returns null)。

在阅读了很多帖子之后,我所能做的就是使用这个例子来使用FileASTRequestor,但这不是要走的路,因为在我看来,我们必须在生成 AST 树之前提供绑定的 KEY。

我在某个地方找到了我们可以使用ASTParser.setEnvironment方法来在独立的 Java 应用程序中使用绑定的地方,但我认为我做得不对。下面的代码有什么问题?

private static final String rootDir = "D:\\workspace\\stateless\\";
    private static final String[] classpath = java.lang.System.getProperty( "java.class.path" ).split(";");

    private static final String source = 
            "package de.siemens.tools.stateless.test.examples; " +
            "public class ClassWithFinalMemberVariables {" +
            "private final int _memberIntVariable = 0;" +
            "public void method() {" +
            "int localVariable = 0;" +
            "System.out.println(_memberIntVariable + localVariable);" +
            "}" +
            "}";

    public static void main(String[] args) throws CoreException {

        Document document = new Document(source);
        ASTParser parser = ASTParser.newParser(AST.JLS4);
        parser.setKind(ASTParser.K_COMPILATION_UNIT);
        parser.setEnvironment(classpath, new String[] { rootDir }, 
new String[] { "UTF8" }, true);  
        parser.setSource(document.get().toCharArray());
        parser.setResolveBindings(true);
        parser.setBindingsRecovery(true);
        CompilationUnit unit = (CompilationUnit)parser.createAST(null);

        unit.recordModifications();

        unit.accept(new ASTVisitor() {

@Override
            public void endVisit(VariableDeclarationFragment node) {

                IVariableBinding bind = node.resolveBinding();

                if(bind == null) 
                   System.out.println("ERROR: bind is null");

                super.endVisit(node);
            }

输出始终为“ ERROR: bind is null”。

4

1 回答 1

3

我已经解决了,代码在这里: http: //pasteit.com/19433

尽管我更喜欢 ASTVisitor 模型,但这个模型为我提供了所有可用的绑定。

对于那些好奇的人,这里是关于这个问题的讨论:https ://bugs.eclipse.org/bugs/show_bug.cgi?id=206391

编辑:我不知道这是否是最好的解决方案,如果您有任何建议,请告诉我

于 2012-11-19T14:50:33.170 回答