class SyntaxTree::YARV::InstructionSequence::CatchBreak

Public Instance Methods

to_a() click to toggle source
# File lib/syntax_tree/yarv/instruction_sequence.rb, line 511
def to_a
  [
    :break,
    iseq.to_a,
    begin_label.name,
    end_label.name,
    exit_label.name,
    restore_sp
  ]
end