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

org.jruby.ast.YieldThreeNode Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package org.jruby.ast;

import org.jruby.Ruby;
import org.jruby.lexer.yacc.ISourcePosition;
import org.jruby.runtime.Block;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;

/**
 *
 * @author enebo
 */
public class YieldThreeNode extends YieldNode {
    private final Node argument1;
    private final Node argument2;
    private final Node argument3;

    public YieldThreeNode(ISourcePosition position, ArrayNode args) {
        super(position, args, true);

        argument1 = args.get(0);
        argument2 = args.get(1);
        argument3 = args.get(2);
    }

    @Override
    public IRubyObject interpret(Ruby runtime, ThreadContext context, IRubyObject self, Block aBlock) {
        return context.getCurrentFrame().getBlock().yieldSpecific(context,
                argument1.interpret(runtime, context, self, aBlock),
                argument2.interpret(runtime, context, self, aBlock),
                argument3.interpret(runtime, context, self, aBlock));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy