Class: BoolNotInstruction

Inherits:
Instruction show all
Defined in:
lib/instructions/bool/bool_not.rb

Overview

pops the top item of the :bool stack; pushes a ValuePoint with the value negated onto the :bool stack

needs: 1 :bool

pushes: 1 :bool

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



23
24
25
# File 'lib/instructions/bool/bool_not.rb', line 23

def cleanup
  pushes :bool, @result
end

#deriveObject



19
20
21
# File 'lib/instructions/bool/bool_not.rb', line 19

def derive
  @result = ValuePoint.new("bool", !@arg1)
end

#preconditions?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/instructions/bool/bool_not.rb', line 11

def preconditions?
  needs :bool, 1
end

#setupObject



15
16
17
# File 'lib/instructions/bool/bool_not.rb', line 15

def setup
  @arg1 = @context.pop_value(:bool)
end