class SyntaxTree::YARV::PutSelf


~~~
puts “Hello, world!”
~~~ruby
### Usage
`putself` pushes the current value of self onto the stack.
### Summary

def ==(other)

def ==(other)
  other.is_a?(PutSelf)
end

def call(vm)

def call(vm)
  vm.push(vm.frame._self)
end

def deconstruct_keys(_keys)

def deconstruct_keys(_keys)
  {}
end

def disasm(fmt)

def disasm(fmt)
  fmt.instruction("putself")
end

def pushes

def pushes
  1
end

def side_effects?

def side_effects?
  false
end

def to_a(_iseq)

def to_a(_iseq)
  [:putself]
end