Package com.redhat.ceylon.compiler.typechecker.model

Examples of com.redhat.ceylon.compiler.typechecker.model.Generic


            checkSuperInvocation(that);
        }
    }

    private void typeArgumentsImplicit(Tree.StaticMemberOrTypeExpression that) {
        Generic dec = (Generic) that.getDeclaration();
        StringBuilder params = new StringBuilder();
        for (TypeParameter tp: dec.getTypeParameters()) {
            if (params.length()>0) params.append(", ");
            params.append("'").append(tp.getName()).append("'");
        }
        that.addError("missing type arguments to generic declaration: '" +
                that.getDeclaration().getName(unit) +
View Full Code Here

TOP

Related Classes of com.redhat.ceylon.compiler.typechecker.model.Generic

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.