Class: OptionParser::Switch::PlacedArgument

Inherits:
OptionParser::Switch show all
Defined in:
lib/llm/shell/internal/optparse/lib/optparse.rb

Overview

Switch that takes an argument, which does not begin with ‘-’ or is ‘-’.

Instance Attribute Summary

Attributes inherited from OptionParser::Switch

#arg, #block, #conv, #desc, #long, #pattern, #short

Instance Method Summary collapse

Methods inherited from OptionParser::Switch

#add_banner, #compsys, guess, incompatible_argument_styles, #initialize, #match_nonswitch?, #omitted_argument, pattern, #pretty_print, #pretty_print_contents, #summarize, #switch_name

Constructor Details

This class inherits a constructor from OptionParser::Switch

Instance Method Details

#parse(arg, argv, &error) ⇒ Object

Returns nil if argument is not present or begins with ‘-’ and is not ‘-’.



791
792
793
794
795
796
797
798
799
800
801
802
803
804
# File 'lib/llm/shell/internal/optparse/lib/optparse.rb', line 791

def parse(arg, argv, &error)
  if !(val = arg) and (argv.empty? or /\A-./ =~ (val = argv[0]))
    return nil, block
  end
  opt = (val = parse_arg(val, &error))[1]
  val = conv_arg(*val)
  if opt and !arg
    argv.shift
  else
    omitted_argument val
    val[0] = nil
  end
  val
end

#pretty_headObject

:nodoc:



806
807
808
# File 'lib/llm/shell/internal/optparse/lib/optparse.rb', line 806

def pretty_head           # :nodoc:
  "Placed"
end