Class: ExecPopInstruction
- Inherits:
-
Instruction
- Object
- Instruction
- ExecPopInstruction
- Includes:
- PopInstruction
- Defined in:
- lib/instructions/exec/exec_pop.rb
Overview
pops (and discards) the topmost item from the :exec
stack
Instance Attribute Summary
Attributes included from PopInstruction
Attributes inherited from Instruction
Instance Method Summary collapse
-
#initialize(context) ⇒ ExecPopInstruction
constructor
A new instance of ExecPopInstruction.
Methods included from PopInstruction
#cleanup, #derive, #preconditions?, #setup
Methods inherited from Instruction
all_instructions, #cleanup, #derive, #go, inherited, #needs, #preconditions?, #pushes, #setup, to_nudgecode
Constructor Details
#initialize(context) ⇒ ExecPopInstruction
Returns a new instance of ExecPopInstruction.
6 7 8 |
# File 'lib/instructions/exec/exec_pop.rb', line 6 def initialize(context) super(context, :exec) end |