Method: Ikra::Symbolic::ArrayCommand#command_binding

Defined in:
lib/symbolic/symbolic.rb

#command_bindingObject

Returns the binding of this command. It is used to retrieve lexical variables that are used inside this parallel section.



361
362
363
364
365
366
367
368
369
# File 'lib/symbolic/symbolic.rb', line 361

def command_binding
    if @command_binding != nil
        return @command_binding
    elsif block != nil
        return block.binding
    else
        return nil
    end
end