1 4 package org.jruby.evaluator; 5 6 public class InstructionBundle { 7 Instruction instruction; 8 InstructionContext instructionContext; 9 InstructionBundle nextInstruction; 10 11 boolean ensured; 12 boolean redoable; 13 boolean breakable; 14 boolean rescuable; 15 boolean retriable; 16 17 public InstructionBundle(Instruction i, InstructionContext ic) { 18 instruction = i; 19 instructionContext = ic; 20 } 21 } 22 | Popular Tags |