class SyntaxTree::YARV::PutString


~~~
“foo”
~~~ruby
### Usage
`putstring` pushes an unfrozen string literal onto the stack.
### Summary

def ==(other)

def ==(other)
  other.is_a?(PutString) && other.object == object
end

def call(vm)

def call(vm)
  vm.push(object.dup)
end

def deconstruct_keys(_keys)

def deconstruct_keys(_keys)
  { object: object }
end

def disasm(fmt)

def disasm(fmt)
  fmt.instruction("putstring", [fmt.object(object)])
end

def initialize(object)

def initialize(object)
  @object = object
end

def length

def length
  2
end

def pushes

def pushes
  1
end

def to_a(_iseq)

def to_a(_iseq)
  [:putstring, object]
end