Class: SyntaxTree::YARV::VM::RescueFrame

Inherits:
Frame
  • Object
show all
Defined in:
lib/syntax_tree/yarv/vm.rb

Instance Attribute Summary

Attributes inherited from Frame

#_self, #iseq, #line, #nesting, #parent, #pc, #stack_index, #svars

Instance Method Summary collapse

Constructor Details

#initialize(iseq, parent, stack_index) ⇒ RescueFrame

Returns a new instance of RescueFrame.



71
72
73
# File 'lib/syntax_tree/yarv/vm.rb', line 71

def initialize(iseq, parent, stack_index)
  super(iseq, parent, stack_index, parent._self, parent.nesting)
end