Class: CodePointsInstruction

Inherits:
Instruction show all
Defined in:
lib/instructions/code/code_points.rb

Overview

pops the top :code item; pushes a new :int with the number of program points in the :code

needs: 1 :code

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



24
25
26
# File 'lib/instructions/code/code_points.rb', line 24

def cleanup
  pushes :int, @result
end

#deriveObject



20
21
22
# File 'lib/instructions/code/code_points.rb', line 20

def derive
  @result = ValuePoint.new("int",@parsed.points)
end

#preconditions?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/instructions/code/code_points.rb', line 11

def preconditions?
  needs :code, 1
end

#setupObject



15
16
17
18
# File 'lib/instructions/code/code_points.rb', line 15

def setup
  arg_blueprint = @context.pop_value(:code)
  @parsed = NudgeProgram.new(arg_blueprint)
end