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

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


        try {
            if (!typeDeclarationsScanned) {
                //System.out.println("Scan type declarations for " + fileName);
                compilationUnit.visit(new DefaultTypeArgVisitor());
                compilationUnit.visit(new SupertypeVisitor(false)); //TODO: move to a new phase!
                compilationUnit.visit(new TypeVisitor());
                typeDeclarationsScanned = true;
            }
        }
        finally {
            ProducedTypeCache.setEnabled(enabled);
View Full Code Here

TOP

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

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.