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

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

package io.shmilyhe.convert.ast.statement;

import java.util.List;

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

public class FunctionStatement extends Statement {
    @Override
    public String getType() {
        return TYPE_FUN;
    }

    protected Identifier id;
    protected List params;

    public Identifier getId() {
        return id;
    }
    public FunctionStatement setId(Identifier id) {
        this.id = id;
        return this;
    }
    public List getParams() {
        return params;
    }
    public FunctionStatement setParams(List params) {
        this.params = params;
        return this;
    }

    

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy