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

io.shmilyhe.convert.ast.statement.EachStatement Maven / Gradle / Ivy

There is a newer version: 3.1.3
Show newest version
package io.shmilyhe.convert.ast.statement;

import io.shmilyhe.convert.ast.expression.Expression;

public class EachStatement extends Statement {
    @Override
    public String getType() {
        return TYPE_EACH;
    }

    Expression target;

    public Expression getTarget() {
        return target;
    }

    public EachStatement setTarget(Expression target) {
        this.target = target;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy