Class: CodeEqualQInstruction
- Inherits:
-
Instruction
- Object
- Instruction
- CodeEqualQInstruction
- Defined in:
- lib/instructions/code/code_equal_q.rb
Overview
pops the top 2 items of the :code
stack; pushes a new ValuePoint onto the :bool
stack, with value true
if the two items’ blueprint strings are identical
needs: 2 :code
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
23 24 25 |
# File 'lib/instructions/code/code_equal_q.rb', line 23 def cleanup pushes :bool, @result end |
#derive ⇒ Object
18 19 20 21 22 |
# File 'lib/instructions/code/code_equal_q.rb', line 18 def derive c1 = NudgeProgram.new(@arg1).blueprint c2 = NudgeProgram.new(@arg2).blueprint @result = ValuePoint.new("bool", c1 == c2) end |
#preconditions? ⇒ Boolean
11 12 13 |
# File 'lib/instructions/code/code_equal_q.rb', line 11 def preconditions? needs :code, 2 end |
#setup ⇒ Object
14 15 16 17 |
# File 'lib/instructions/code/code_equal_q.rb', line 14 def setup @arg2 = @context.pop_value(:code) @arg1 = @context.pop_value(:code) end |