Package com.strobel.reflection.emit

Examples of com.strobel.reflection.emit.TypeBuilder


        if (other == null) {
            return false;
        }

        if (other instanceof TypeBuilder) {
            final TypeBuilder typeBuilder = (TypeBuilder) other;

            return typeBuilder.isCreated() &&
                   isEquivalentTo(typeBuilder.createType());
        }

        if (other instanceof RuntimeType<?>) {
            return other.isEquivalentTo(this);
        }
View Full Code Here


    private LabelScopeInfo     _labelBlock = new LabelScopeInfo(null, LabelScopeKind.Lambda);

    LambdaCompiler(final AnalyzedTree tree, final LambdaExpression<?> lambda) {
        this.lambda = lambda;

        typeBuilder = new TypeBuilder(
            getUniqueLambdaName(lambda.getName(), lambda.getCreationContext()),
            Modifier.PUBLIC | Modifier.FINAL,
            Types.Object,
            Type.list(lambda.getType())
        );
View Full Code Here

        if (sourceType instanceof TypeBuilder) {
            return isAssignable(sourceType.getBaseType(), targetType);
        }

        if (targetType instanceof TypeBuilder) {
            final TypeBuilder targetTypeBuilder = (TypeBuilder) targetType;

            return targetTypeBuilder.isCreated() &&
                   isAssignable(sourceType, targetTypeBuilder.createType());
        }

        return isConvertible(sourceType, targetType);
    }
View Full Code Here

        if (other == null) {
            return false;
        }

        if (other instanceof TypeBuilder) {
            final TypeBuilder typeBuilder = (TypeBuilder) other;

            return typeBuilder.isCreated() &&
                   isEquivalentTo(typeBuilder.createType());
        }

        if (other instanceof RuntimeType<?>) {
            return other.isEquivalentTo(this);
        }
View Full Code Here

TOP

Related Classes of com.strobel.reflection.emit.TypeBuilder

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.