All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.pmd.lang.plsql.symboltable.SymbolFacade Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
/**
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.lang.plsql.symboltable;

import net.sourceforge.pmd.lang.plsql.ast.ASTInput;

public final class SymbolFacade {

    private SymbolFacade() {

    }

    public static void process(ASTInput node) {
        ScopeAndDeclarationFinder sc = new ScopeAndDeclarationFinder();
        node.acceptVisitor(sc, null);
        OccurrenceFinder of = new OccurrenceFinder();
        node.acceptVisitor(of, null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy