Class: IntDivideInstruction

Inherits:
Instruction show all
Defined in:
lib/instructions/int/int_divide.rb

Overview

pops the top 2 items of the :int stack; pushes a ValuePoint with their (integer) quotient onto the :int stack

note: the top item is the denominator, the second item is the numerator

note: will push an :error ValuePoint instead of an :int if the numerator is 0

needs: 2 :int

pushes: 1 :int

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



29
30
31
# File 'lib/instructions/int/int_divide.rb', line 29

def cleanup
  pushes :int, @result
end

#deriveObject



21
22
23
24
25
26
27
28
# File 'lib/instructions/int/int_divide.rb', line 21

def derive
  if @arg2 != 0
    @quotient = @arg1 / @arg2
    @result = ValuePoint.new("int", @quotient)
  else
    raise InstructionMethodError, "#{self.class} cannot divide by 0"
  end
end

#preconditions?Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/instructions/int/int_divide.rb', line 14

def preconditions?
  needs :int, 2
end

#setupObject



17
18
19
20
# File 'lib/instructions/int/int_divide.rb', line 17

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