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

Examples of com.redhat.ceylon.compiler.typechecker.analyzer.SpecificationVisitor$SpecificationState


            //System.out.println("Validate control flow for " + fileName);
            compilationUnit.visit(new ControlFlowVisitor());
            //System.out.println("Validate self references for " + fileName);
            //System.out.println("Validate specification for " + fileName);
            for (Declaration d: unit.getDeclarations()) {
                compilationUnit.visit(new SpecificationVisitor(d));
                if (d instanceof TypeDeclaration) {
                    compilationUnit.visit(new SelfReferenceVisitor((TypeDeclaration) d));
                }
            }
            flowAnalyzed = true;
View Full Code Here

TOP

Related Classes of com.redhat.ceylon.compiler.typechecker.analyzer.SpecificationVisitor$SpecificationState

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.