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

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


        Boolean enabled = ProducedTypeCache.setEnabled(false);
        try {
            if (!refinementValidated) {
                ProducedType.depth.set(0);
                //System.out.println("Validate member refinement for " + fileName);
                compilationUnit.visit(new AliasVisitor());
                compilationUnit.visit(new SupertypeVisitor(true)); //TODO: move to a new phase!
                compilationUnit.visit(new InheritanceVisitor());
                compilationUnit.visit(new RefinementVisitor());
                refinementValidated = true;
            }
View Full Code Here

TOP

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

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.