class SyntaxTree::YARV::PutObjectInt2Fix1


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

def ==(other)

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

def call(vm)

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

def canonical

def canonical
  PutObject.new(1)
end

def deconstruct_keys(_keys)

def deconstruct_keys(_keys)
  {}
end

def disasm(fmt)

def disasm(fmt)
  fmt.instruction("putobject_INT2FIX_1_")
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_1_]
end