Package com.redhat.ceylon.compiler.typechecker.analyzer

Examples of com.redhat.ceylon.compiler.typechecker.analyzer.ModuleVisitor


        if ( ModuleManager.MODULE_FILE.equals(fileName) ||
                ModuleManager.PACKAGE_FILE.equals(fileName) ) {
            if (! moduleVisited) {
                moduleVisited = true;
                processLiterals();
                moduleVisitor = new ModuleVisitor(moduleManagerRef.get(), pkg);
                moduleVisitor.setCompleteOnlyAST(reuseExistingDescriptorModels());
                compilationUnit.visit(moduleVisitor);
                return moduleVisitor.getMainModule();
            }
        }
View Full Code Here

TOP

Related Classes of com.redhat.ceylon.compiler.typechecker.analyzer.ModuleVisitor

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.