Class: YARD::Amp::LegacyHelpHandler

Inherits:
LegacyAmpCommandHandler show all
Defined in:
lib/yard-amp/legacy_handler.rb

Constant Summary collapse

MATCH =
/help=?\(?\s*(.*)\s*\)?\s*/

Instance Method Summary collapse

Methods inherited from LegacyAmpCommandHandler

#attach_metadata

Methods included from ParsingHelpers

#clean_string, #construct_docstring, #parse_hash, #split_by_comma_smart

Instance Method Details

#processObject



59
60
61
62
63
# File 'lib/yard-amp/legacy_handler.rb', line 59

def process
  return unless super
  param = clean_string(statement.tokens.to_s[MATCH, 1].strip)
  (:help => param)
end