Class: CodePointsInstruction
- Inherits:
-
Instruction
- Object
- Instruction
- CodePointsInstruction
- 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
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
#cleanup ⇒ Object
24 25 26 |
# File 'lib/instructions/code/code_points.rb', line 24 def cleanup pushes :int, @result end |
#derive ⇒ Object
20 21 22 |
# File 'lib/instructions/code/code_points.rb', line 20 def derive @result = ValuePoint.new("int",@parsed.points) end |
#preconditions? ⇒ Boolean
11 12 13 |
# File 'lib/instructions/code/code_points.rb', line 11 def preconditions? needs :code, 1 end |
#setup ⇒ Object
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 |