Class: BoolFromIntInstruction
- Inherits:
-
Instruction
- Object
- Instruction
- BoolFromIntInstruction
- Defined in:
- lib/instructions/conversion/bool_from_int.rb
Overview
pops the top :int
item; pushes a new :bool
item, with value false
when the :int
is 0, otherwise +true
needs: 1 :int
pushes: 1 :bool
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
20 21 22 |
# File 'lib/instructions/conversion/bool_from_int.rb', line 20 def cleanup pushes :bool, @result end |
#derive ⇒ Object
17 18 19 |
# File 'lib/instructions/conversion/bool_from_int.rb', line 17 def derive @result = ValuePoint.new("bool", @arg != 0) end |
#preconditions? ⇒ Boolean
11 12 13 |
# File 'lib/instructions/conversion/bool_from_int.rb', line 11 def preconditions? needs :int, 1 end |
#setup ⇒ Object
14 15 16 |
# File 'lib/instructions/conversion/bool_from_int.rb', line 14 def setup @arg = @context.pop_value(:int) end |