class SyntaxTree::YARV::Intern


~~~
:“#{”foo“}”
~~~ruby
### Usage
symbol onto the stack.
‘intern` converts the top element of the stack to a symbol and pushes the
### Summary

def ==(other)

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

def call(vm)

def call(vm)
  vm.push(vm.pop.to_sym)
end

def deconstruct_keys(_keys)

def deconstruct_keys(_keys)
  {}
end

def disasm(fmt)

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

def pops

def pops
  1
end

def pushes

def pushes
  1
end

def to_a(_iseq)

def to_a(_iseq)
  [:intern]
end