Class: FloatDepthInstruction
- Inherits:
-
Instruction
- Object
- Instruction
- FloatDepthInstruction
- Includes:
- DepthInstruction
- Defined in:
- lib/instructions/float/float_depth.rb
Overview
pushes a ValuePoint with the number of items in the :float
stack onto the :int
stack
pushes: 1 :int
Instance Attribute Summary
Attributes included from DepthInstruction
Attributes inherited from Instruction
Instance Method Summary collapse
-
#initialize(context) ⇒ FloatDepthInstruction
constructor
A new instance of FloatDepthInstruction.
Methods included from DepthInstruction
#cleanup, #derive, #preconditions?, #setup
Methods inherited from Instruction
all_instructions, #cleanup, #derive, #go, inherited, #needs, #preconditions?, #pushes, #setup, to_nudgecode
Constructor Details
#initialize(context) ⇒ FloatDepthInstruction
Returns a new instance of FloatDepthInstruction.
8 9 10 |
# File 'lib/instructions/float/float_depth.rb', line 8 def initialize(context) super(context, :float) end |