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

webit.script.core.ast.statments.WhileStatmentNoLoops 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.VariantIndexer;
import webit.script.core.ast.AbstractStatment;
import webit.script.core.ast.Expression;
import webit.script.core.ast.Statment;
import webit.script.core.runtime.VariantStack;
import webit.script.util.ALU;
import webit.script.util.StatmentUtil;

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

    private final Expression whileExpr;
    private final VariantIndexer varIndexer;
    private final Statment[] statments;

    public WhileStatmentNoLoops(Expression whileExpr, VariantIndexer varIndexer, Statment[] statments, int line, int column) {
        super(line, column);
        this.whileExpr = whileExpr;
        this.varIndexer = varIndexer;
        this.statments = statments;
    }

    public Object execute(final Context context) {
        final VariantStack vars;
        (vars = context.vars).push(varIndexer);
        final Statment[] statments = this.statments;
        while (ALU.isTrue(StatmentUtil.execute(whileExpr, context))) {
            StatmentUtil.executeInverted(statments, context);
            vars.resetCurrent();
        }
        vars.pop();
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy