class Dry::CLI::CommandRegistry::LookupResult

@api private
@since 0.1.0
Result of a registry lookup

def after_callbacks

Other tags:
    Api: - private

Other tags:
    Since: - 0.2.0
def after_callbacks
  @node.after_callbacks
end

def before_callbacks

Other tags:
    Api: - private

Other tags:
    Since: - 0.2.0
def before_callbacks
  @node.before_callbacks
end

def children

Other tags:
    Api: - private

Other tags:
    Since: - 0.1.0
def children
  @node.children
end

def command

Other tags:
    Api: - private

Other tags:
    Since: - 0.1.0
def command
  @node.command
end

def found?

Other tags:
    Api: - private

Other tags:
    Since: - 0.1.0
def found?
  @found
end

def initialize(node, arguments, names, found)

Other tags:
    Api: - private

Other tags:
    Since: - 0.1.0
def initialize(node, arguments, names, found)
  @node      = node
  @arguments = arguments
  @names     = names
  @found     = found
end