Package ceylon.language.meta.declaration

Examples of ceylon.language.meta.declaration.AliasDeclaration


        }
        return result;
    }

    protected AliasDeclaration makeAlias(Declaration packageOrType, String aliasName) {
        final AliasDeclaration result;
        if (packageOrType instanceof Package) {
            result = ((Package)packageOrType).getAlias(aliasName);
        } else if (packageOrType instanceof ClassOrInterfaceDeclaration) {
            result = ((ClassOrInterfaceDeclaration)packageOrType).<AliasDeclaration>getMemberDeclaration(AliasDeclaration.$TypeDescriptor$, aliasName);
        } else {
View Full Code Here

TOP

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

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.