Package ceylon.language.meta.declaration

Examples of ceylon.language.meta.declaration.TypeParameter


        }
        return result;
    }
   
    protected TypeParameter makeTypeParameter(Declaration packageOrType, String typeParameter) {
        final TypeParameter result;
        if (packageOrType instanceof ClassOrInterfaceDeclaration) {
            result = ((ClassOrInterfaceDeclaration)packageOrType).getTypeParameterDeclaration(typeParameter);
        } else if (packageOrType instanceof FunctionDeclaration) {
            result = ((FunctionDeclaration)packageOrType).getTypeParameterDeclaration(typeParameter);
        } else if (packageOrType instanceof AliasDeclaration) {
View Full Code Here

TOP

Related Classes of ceylon.language.meta.declaration.TypeParameter

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.