class SyntaxTree::YARV::Pop
### Summary
‘pop` pops the top value off the stack.
### Usage
~~~ruby a ||= 2 ~~~
Public Instance Methods
Source
# File lib/syntax_tree/yarv/instructions.rb, line 4511 def ==(other) other.is_a?(Pop) end
Source
# File lib/syntax_tree/yarv/instructions.rb, line 4507 def deconstruct_keys(_keys) {} end
Source
# File lib/syntax_tree/yarv/instructions.rb, line 4499 def disasm(fmt) fmt.instruction("pop") end
Source
# File lib/syntax_tree/yarv/instructions.rb, line 4523 def side_effects? false end
Source
# File lib/syntax_tree/yarv/instructions.rb, line 4503 def to_a(_iseq) [:pop] end