All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.strobel.expressions.InvocationExpression Maven / Gradle / Ivy

There is a newer version: 2.5.0.Final
Show newest version
/*
 * InvocationExpression.java
 *
 * Copyright (c) 2012 Mike Strobel
 *
 * This source code is based on the Dynamic Language Runtime from Microsoft,
 *   Copyright (c) Microsoft Corporation.
 *
 * This source code is subject to terms and conditions of the Apache License, Version 2.0.
 * A copy of the license can be found in the License.html file at the root of this distribution.
 * By using this source code in any fashion, you are agreeing to be bound by the terms of the
 * Apache License, Version 2.0.
 *
 * You must not remove this notice, or any other, from this software.
 */

package com.strobel.expressions;

import com.strobel.reflection.Type;

/**
 * @author Mike Strobel
 */
public final class InvocationExpression extends Expression implements IArgumentProvider {
    private final ExpressionList _arguments;
    private final Expression _lambda;
    private final Type _returnType;

    InvocationExpression(final Expression lambda, final ExpressionList arguments, final Type returnType) {
        _lambda = lambda;
        _arguments = arguments;
        _returnType = returnType;
    }

    @Override
    public final Type getType() {
        return _returnType;
    }

    @Override
    public final ExpressionType getNodeType() {
        return ExpressionType.Invoke;
    }

    public Expression getExpression() {
        return _lambda;
    }

    public ExpressionList getArguments() {
        return _arguments;
    }

    @Override
    public int getArgumentCount() {
        return _arguments.size();
    }

    @Override
    public Expression getArgument(final int index) {
        return _arguments.get(index);
    }

    public InvocationExpression update(final LambdaExpression lambda, final ExpressionList arguments) {
        if (lambda == _lambda && arguments == _arguments) {
            return this;
        }
        return invoke(lambda, arguments);
    }

    @Override
    protected Expression accept(final ExpressionVisitor visitor) {
        return visitor.visitInvocation(this);
    }

    InvocationExpression rewrite(final LambdaExpression lambda, final ExpressionList arguments) {
        assert lambda != null;
        assert arguments == null || arguments.size() == _arguments.size();

        return Expression.invoke(lambda, arguments != null ? arguments : _arguments);
    }

    LambdaExpression getLambdaOperand() {
        return _lambda.getNodeType() == ExpressionType.Quote
               ? (LambdaExpression)((UnaryExpression)_lambda).getOperand()
               : (_lambda instanceof LambdaExpression ? (LambdaExpression)_lambda : null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy