class EXEL::InstructionNode
A leaf node in the AST that contains an instruction ({Instruction}, {ListenInstruction}) to be executed
Public Instance Methods
run(context)
click to toggle source
# File lib/exel/instruction_node.rb, line 8 def run(context) @instruction.execute(context) end