Class: CodeQuoteInstruction

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



22
23
24
# File 'lib/instructions/code/code_quote.rb', line 22

def cleanup
  pushes :code, @result
end

#deriveObject



18
19
20
# File 'lib/instructions/code/code_quote.rb', line 18

def derive
  @result = ValuePoint.new("code", @arg)
end

#preconditions?Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/instructions/code/code_quote.rb', line 10

def preconditions?
  needs :exec, 1
end

#setupObject



14
15
16
# File 'lib/instructions/code/code_quote.rb', line 14

def setup
  @arg = @context.pop(:exec).blueprint
end