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

webit.script.core.ast.statments.EchoStatment Maven / Gradle / Ivy

There is a newer version: 1.5.2
Show newest version
// Copyright (c) 2013, Webit Team. All Rights Reserved.
package webit.script.core.ast.statments;

import webit.script.Context;
import webit.script.core.ast.AbstractStatment;
import webit.script.core.ast.Expression;
import webit.script.util.StatmentUtil;

/**
 *
 * @author Zqq
 */
public final class EchoStatment extends AbstractStatment {

    private final Expression expr;

    public EchoStatment(Expression expr) {
        super(expr.getLine(), expr.getColumn());
        this.expr = expr;
    }

    public EchoStatment(Expression expr, int line, int column) {
        super(line, column);
        this.expr = expr;
    }

    public Object execute(final Context context) {
        context.out(StatmentUtil.execute(expr, context));
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy