Package org.python.indexer

Examples of org.python.indexer.Ref


        }
        return null;
    }

    public Ref getRefOrFail(String qname, int offset, int length) throws Exception {
        Ref ref = getRefOrNull(qname, offset, length);
        assertNotNull("No reference to " + qname + " at offset " + offset + " of length " + length,
                      ref);
        return ref;
    }
View Full Code Here


        } else {
            nb = Indexer.idx.lookupQname(qname);
        }

        if (nb != null) {
            linker.processRef(new Ref(file, offset, qname), nb);
        }
    }
View Full Code Here

TOP

Related Classes of org.python.indexer.Ref

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.