Class: CodeExecuteThenPopInstruction

Inherits:
Instruction show all
Defined in:
lib/instructions/code/code_execute_then_pop.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_execute_then_pop.rb', line 17

def cleanup
  pushes :exec, @result
end

#deriveObject



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

def derive
  that_becomes = NudgeProgram.new(@arg)
  if that_becomes.parses?
    @result = CodeblockPoint.new([NudgeProgram.new(@arg).linked_code,InstructionPoint.new("code_pop")])
  else
    @result = CodeblockPoint.new([InstructionPoint.new("code_pop")])
  end
end

#preconditions?Boolean

Returns:

  • (Boolean)


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

def preconditions?
  needs CodePopInstruction
  needs :code, 1
end

#setupObject



6
7
8
# File 'lib/instructions/code/code_execute_then_pop.rb', line 6

def setup
  @arg = @context.peek_value(:code) # does not pop the stack initially!
end