Package org.python.pydev.refactoring.ast.visitors.selection

Examples of org.python.pydev.refactoring.ast.visitors.selection.SelectionValidationVisitor


        }
        return visitor.getSelection();
    }

    public static void validateSelection(ModuleAdapter scope) throws SelectionException {
        SelectionValidationVisitor visitor = null;
        try {
            visitor = new SelectionValidationVisitor();
            scope.getASTNode().accept(visitor);
        } catch (SelectionException e) {
            throw e;
        } catch (Throwable e) {
            throw new RuntimeException(e);
View Full Code Here

TOP

Related Classes of org.python.pydev.refactoring.ast.visitors.selection.SelectionValidationVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.