Class: FloatFromProportionInstruction
- Inherits:
-
Instruction
- Object
- Instruction
- FloatFromProportionInstruction
- Defined in:
- lib/instructions/conversion/float_from_proportion.rb
Overview
pops the top :proportion
item; pushes a new :float
item with the same value
needs: 1 :proportion
pushes: 1 :float
Instance Attribute Summary
Attributes inherited from Instruction
Instance Method Summary collapse
Methods inherited from Instruction
all_instructions, #go, inherited, #initialize, #needs, #pushes, to_nudgecode
Constructor Details
This class inherits a constructor from Instruction
Instance Method Details
#cleanup ⇒ Object
22 23 24 |
# File 'lib/instructions/conversion/float_from_proportion.rb', line 22 def cleanup pushes :float, @result end |
#derive ⇒ Object
18 19 20 |
# File 'lib/instructions/conversion/float_from_proportion.rb', line 18 def derive @result = ValuePoint.new("float", @arg) end |
#preconditions? ⇒ Boolean
10 11 12 |
# File 'lib/instructions/conversion/float_from_proportion.rb', line 10 def preconditions? needs :proportion, 1 end |
#setup ⇒ Object
14 15 16 |
# File 'lib/instructions/conversion/float_from_proportion.rb', line 14 def setup @arg = @context.pop_value(:proportion) end |