Package org.python.pydev.core.parser

Examples of org.python.pydev.core.parser.ChangedParserInfoForObservers


        }

        if (obj.o1 != null) {
            //Ok, reparse successful, lets erase the markers that are in the editor we just parsed
            //Note: we may get the ast even if errors happen (and we'll notify in that case too).
            ChangedParserInfoForObservers info = new ChangedParserInfoForObservers(obj.o1, adaptable, document,
                    documentTime, argsToReparse);
            fireParserChanged(info);
        }

        if (obj.o2 instanceof ParseException || obj.o2 instanceof TokenMgrError) {
View Full Code Here

TOP

Related Classes of org.python.pydev.core.parser.ChangedParserInfoForObservers

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.