Package org.python.indexer.ast

Examples of org.python.indexer.ast.NName.start()


        assertNotNull(decos);
        assertEquals(2, decos.size());
        assertTrue(decos.get(0) instanceof NName);

        NName d1 = (NName)decos.get(0);
        assertEquals(nthIndexOf(src, "deco1", 1), d1.start());
        assertEquals("deco1".length(), d1.length());
        assertEquals("deco1", d1.id);

        assertTrue(decos.get(1) instanceof NCall);
        NCall d2 = (NCall)decos.get(1);
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.