Examples of FindDuplicatesVisitor


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
Copyright © 2018 www.massapi.com. 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.