org.jruby.compiler.ir.representations.InlinerInfo Maven / Gradle / Ivy
package org.jruby.compiler.ir.representations;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.jruby.compiler.ir.Tuple;
import org.jruby.compiler.ir.IRExecutionScope;
import org.jruby.compiler.ir.operands.Array;
import org.jruby.compiler.ir.operands.Label;
import org.jruby.compiler.ir.operands.LocalVariable;
import org.jruby.compiler.ir.operands.Operand;
import org.jruby.compiler.ir.operands.Variable;
import org.jruby.compiler.ir.instructions.CallInstr;
import org.jruby.compiler.ir.instructions.YieldInstr;
public class InlinerInfo {
public final CFG callerCFG;
public final CallInstr call;
private Operand[] callArgs;
private Map
© 2015 - 2025 Weber Informatics LLC | Privacy Policy