Lines Matching refs:optionHelp
706 Option optionHelp = splitAndGet(option); in getoptImpl() local
707 optionHelp.required = cfg.required; in getoptImpl()
709 if (optionHelp.optLong.length) in getoptImpl()
711 assert(optionHelp.optLong !in visitedLongOpts, in getoptImpl()
712 "Long option " ~ optionHelp.optLong ~ " is multiply defined"); in getoptImpl()
714 visitedLongOpts[optionHelp.optLong] = []; in getoptImpl()
717 if (optionHelp.optShort.length) in getoptImpl()
719 assert(optionHelp.optShort !in visitedShortOpts, in getoptImpl()
720 "Short option " ~ optionHelp.optShort in getoptImpl()
723 visitedShortOpts[optionHelp.optShort] = []; in getoptImpl()
729 optionHelp.help = opts[1]; in getoptImpl()
738 rslt.options ~= optionHelp; in getoptImpl()