Class: CodeCarInstruction

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



17
18
19
# File 'lib/instructions/code/code_car.rb', line 17

def cleanup
  pushes :code, @result
end

#deriveObject



8
9
10
11
12
13
14
15
16
# File 'lib/instructions/code/code_car.rb', line 8

def derive
  tree = NudgeProgram.new(@arg)
  if tree.linked_code.kind_of?(CodeblockPoint) && (tree.points > 2)
    new_tree = tree[1].contents[0]
  else
    new_tree = tree
  end
  @result = ValuePoint.new("code", new_tree.blueprint)
end

#preconditions?Boolean

Returns:

  • (Boolean)


2
3
4
# File 'lib/instructions/code/code_car.rb', line 2

def preconditions?
  needs :code, 1
end

#setupObject



5
6
7
# File 'lib/instructions/code/code_car.rb', line 5

def setup
  @arg = @context.pop_value(:code)
end