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

Examples of org.python.pydev.refactoring.ast.visitors.FindDuplicatesVisitor


    /**
     * Provides all the duplicates in this scope (excluding the one from the passed selection).
     */
    public List<Tuple<ITextSelection, SimpleNode>> getDuplicates(ITextSelection selection, exprType expression) {
        FindDuplicatesVisitor v = VisitorFactory.createDuplicatesVisitor(selection, getASTNode(), expression, this,
                this.getModule().getDoc());
        return v.getDuplicates();
    }
View Full Code Here

TOP

Related Classes of org.python.pydev.refactoring.ast.visitors.FindDuplicatesVisitor

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.