Class: SyntaxTree::YARV::VM::BlockFrame

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) ⇒ BlockFrame

Returns a new instance of BlockFrame.



49
50
51
# File 'lib/syntax_tree/yarv/vm.rb', line 49

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