Class that parses ctags generated files contains resulting ctags_entry
objects.
|
|
|
_clear_variables(self)
Sets internal maps to initial values. |
source code
|
|
|
__header_format(self,
line)
Processes !_ctags_file_FORMAT ctags header. |
source code
|
|
|
__header_sorted(self,
line)
Processes !_ctags_file_SORTED ctags header. |
source code
|
|
|
__header_author(self,
line)
Processes !_TAG_PROGRAM_AUTHOR ctags header. |
source code
|
|
|
__header_name(self,
line)
Processes !_TAG_PROGRAM_NAME ctags header. |
source code
|
|
|
__header_url(self,
line)
Processes !_TAG_PROGRAM_URL ctags header. |
source code
|
|
|
__header_version(self,
line)
Processes !_TAG_PROGRAM_VERSION ctags header. |
source code
|
|
|
parse(self,
tags,
**kwargs)
Parses ctags file and constructs ctags_entry list. |
source code
|
|
|
harvest(self,
harvesters)
Used to perform new data harvesters with already processed tags. |
source code
|
|
|
feed_init(self,
**kwargs)
Initializes ctags_file data members and possible data harvesters. |
source code
|
|
|
feed_line(self,
tagline)
Used to parse new ctags formatted output and new tags to the end of
the tags list. |
source code
|
|
|
|
|
format
Format from the header.
|
|
format_comment
Format header comment.
|
|
sorted
Sorting type.
|
|
sorted_comment
Sorting type comment.
|
|
author
Ctags author.
|
|
author_comment
Ctags author comment.
|
|
name
Tag program name.
|
|
name_comment
Tag program comment.
|
|
url
Tag program url.
|
|
url_comment
Tag program url comment.
|
|
version
Tag program version.
|
|
version_comment
Tag program version comment.
|
|
tags
List of ctags_entry elements.
|
|
__feed_harvesters
List of harvesters used when parsing ctags output on the fly.
|