class SyntaxTree::YARV::PutObjectInt2Fix0


~~~
0
~~~ruby
### Usage
equivalent to ‘putobject 0`.
instruction resulting from the operand unification optimization. It is
`putobject_INT2FIX_0_` pushes 0 on the stack. It is a specialized
### Summary

def ==(other)

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

def call(vm)

def call(vm)
  canonical.call(vm)
end

def canonical

def canonical
  PutObject.new(0)
end

def deconstruct_keys(_keys)

def deconstruct_keys(_keys)
  {}
end

def disasm(fmt)

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

def pushes

def pushes
  1
end

def side_effects?

def side_effects?
  false
end

def to_a(_iseq)

def to_a(_iseq)
  [:putobject_INT2FIX_0_]
end