Class: CodeFromIntInstruction
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
#cleanup ⇒ Object
23
24
25
|
# File 'lib/instructions/conversion/code_from_int.rb', line 23
def cleanup
pushes :code, @result
end
|
#derive ⇒ Object
20
21
22
|
# File 'lib/instructions/conversion/code_from_int.rb', line 20
def derive
@result = ValuePoint.new("code", "value «int»\n«int» #{@arg}")
end
|
#preconditions? ⇒ Boolean
14
15
16
|
# File 'lib/instructions/conversion/code_from_int.rb', line 14
def preconditions?
needs :int, 1
end
|
#setup ⇒ Object
17
18
19
|
# File 'lib/instructions/conversion/code_from_int.rb', line 17
def setup
@arg = @context.pop_value(:int)
end
|