Class: CodeContainsQInstruction

Inherits:
Instruction show all
Defined in:
lib/instructions/code/code_contains_q.rb

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



19
20
21
# File 'lib/instructions/code/code_contains_q.rb', line 19

def cleanup
  pushes :bool, @result
end

#deriveObject



9
10
11
12
13
14
15
16
17
18
# File 'lib/instructions/code/code_contains_q.rb', line 9

def derive
  looking_for_this = NudgeProgram.new(@arg1)
  tree = NudgeProgram.new(@arg2)
  if tree.parses? && looking_for_this.parses?
    found = tree.linked_code.any? {|point| point.blueprint == looking_for_this.blueprint}
  else
    found = false
  end
  @result = ValuePoint.new("bool", found)
end

#preconditions?Boolean

Returns:

  • (Boolean)


2
3
4
# File 'lib/instructions/code/code_contains_q.rb', line 2

def preconditions?
  needs :code, 2
end

#setupObject



5
6
7
8
# File 'lib/instructions/code/code_contains_q.rb', line 5

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