Method: IntMaxInstruction#derive

Defined in:
lib/instructions/int/int_max.rb

#deriveObject



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

def derive
    @max = [@arg1,@arg2].max
    @result = ValuePoint.new("int", @max)
end