Class: IntLessThanQInstruction

Inherits:
Instruction show all
Defined in:
lib/instructions/int/int_less_than_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



12
13
14
# File 'lib/instructions/int/int_less_than_q.rb', line 12

def cleanup
  pushes :bool, @result
end

#deriveObject



9
10
11
# File 'lib/instructions/int/int_less_than_q.rb', line 9

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

#preconditions?Boolean

Returns:

  • (Boolean)


2
3
4
# File 'lib/instructions/int/int_less_than_q.rb', line 2

def preconditions?
  needs :int, 2
end

#setupObject



5
6
7
8
# File 'lib/instructions/int/int_less_than_q.rb', line 5

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