label()
Instance Public methods
Returns the label of this instruction sequence.
<main>
if it's at the top level,
<compiled>
if it was evaluated from a string.
For example, using irb:
1 2 3 4 | iseq = RubyVM::InstructionSequence.compile( 'num = 1 + 2' ) #=> <RubyVM::InstructionSequence:<compiled>@<compiled>> iseq.label #=> "<compiled>" |
Using ::compile_file:
1 2 3 4 5 6 7 8 | # /tmp/method.rb def hello puts "hello, world" end # in irb > iseq = RubyVM::InstructionSequence.compile_file( '/tmp/method.rb' ) > iseq.label #=> <main> |
Please login to continue.