Class: IntShoveInstruction
- Inherits:
-
Instruction
- Object
- Instruction
- IntShoveInstruction
- Includes:
- ShoveInstruction
- Defined in:
- lib/instructions/int/int_shove.rb
Overview
pops the top 2 items of the :int
stack; pushes the top item down “into” the :int
stack, at a level determined by the second value.
If the destination value is negative or 0, the item stays on top; if the destination value is greater than or equal to the depth of the stack, the item goes to the bottom; otherwise, the item is inserted farther from the stack’s top as the destination value increases.
note: the destination depth is calculated after the items have been popped
needs: 2 :int
pushes: 1 :int
(sortof)
Instance Attribute Summary
Attributes included from ShoveInstruction
Attributes inherited from Instruction
Instance Method Summary collapse
-
#initialize(context) ⇒ IntShoveInstruction
constructor
A new instance of IntShoveInstruction.
Methods included from ShoveInstruction
#cleanup, #derive, #preconditions?, #setup
Methods inherited from Instruction
all_instructions, #cleanup, #derive, #go, inherited, #needs, #preconditions?, #pushes, #setup, to_nudgecode
Constructor Details
#initialize(context) ⇒ IntShoveInstruction
Returns a new instance of IntShoveInstruction.
17 18 19 |
# File 'lib/instructions/int/int_shove.rb', line 17 def initialize(context) super(context, :int) end |