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

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


   
    public synchronized void analyseFlow() {
        if (!flowAnalyzed) {
            compilationUnit.visit(new TypeHierarchyVisitor());
            //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) {
View Full Code Here

TOP

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

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.