Class: IntPowerInstruction

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



13
14
15
# File 'lib/instructions/int/int_power.rb', line 13

def cleanup
  pushes :int, @result
end

#deriveObject

Raises:



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

def derive
  raise NaNResultError,"#{self.class} attempted negative root of 0" if @arg1 == 0 && @arg2 < 0
  @result = ValuePoint.new("int", (@arg1**@arg2).to_i)
end

#preconditions?Boolean

Returns:

  • (Boolean)


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

def preconditions?
  needs :int, 2
end

#setupObject



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

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