Class: FloatIfInstruction

Inherits:
Instruction show all
Includes:
IfInstruction
Defined in:
lib/instructions/float/float_if.rb

Overview

pops the top 2 items of the :float stack, and one :bool; returns the top :float item if the :bool is false, the second one if true

needs: 2 :float, 1 :bool

pushes: 1 :float

Instance Attribute Summary

Attributes included from IfInstruction

#target_stack

Attributes inherited from Instruction

#context

Instance Method Summary collapse

Methods included from IfInstruction

#cleanup, #derive, #preconditions?, #setup

Methods inherited from Instruction

all_instructions, #cleanup, #derive, #go, inherited, #needs, #preconditions?, #pushes, #setup, to_nudgecode

Constructor Details

#initialize(context) ⇒ FloatIfInstruction

Returns a new instance of FloatIfInstruction.



13
14
15
# File 'lib/instructions/float/float_if.rb', line 13

def initialize(context)
  super(context, :float)
end