Class: CodeFromFloatInstruction

Inherits:
Instruction show all
Defined in:
lib/instructions/conversion/code_from_float.rb

Overview

pops the top :float item; pushes a new :code item, with value equal to the :float item’s blueprint

needs: 1 :float

pushes: 1 :code

Instance Attribute Summary

Attributes inherited from Instruction

#context

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

#cleanupObject



22
23
24
# File 'lib/instructions/conversion/code_from_float.rb', line 22

def cleanup
  pushes :code, @result
end

#deriveObject



19
20
21
# File 'lib/instructions/conversion/code_from_float.rb', line 19

def derive
  @result = ValuePoint.new("code", "value «float»\n«float» #{@arg}")
end

#preconditions?Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/instructions/conversion/code_from_float.rb', line 13

def preconditions?
  needs :float, 1
end

#setupObject



16
17
18
# File 'lib/instructions/conversion/code_from_float.rb', line 16

def setup
  @arg = @context.pop_value(:float)
end