summaryrefslogtreecommitdiff
path: root/giscanner/annotationparser.py
Commit message (Expand)AuthorAgeFilesLines
...
* giscanner: complete vararg parameter parsingDieter Verfaillie2013-10-081-3/+9
* giscanner: define __slots__ on some classesDieter Verfaillie2013-10-081-0/+9
* giscanner: always use re.UNICODE modeDieter Verfaillie2013-10-081-16/+12
* giscanner: use "\s" instead of "[^\S\n\r]"Dieter Verfaillie2013-10-081-48/+48
* giscanner: expand parse_comment_block() parametersDieter Verfaillie2013-10-081-7/+7
* giscanner: rename the parse() method to parse_comment_blocks()Dieter Verfaillie2013-10-081-1/+1
* giscanner: rename AnnotationParser() to GtkDocCommentBlockParser()Dieter Verfaillie2013-10-081-2/+2
* giscanner: rename "comment" to "description"Dieter Verfaillie2013-10-081-21/+21
* giscanner: rename "colon" to "delimiter"Dieter Verfaillie2013-10-081-19/+19
* giscanner: rename "options" to "annotations"Dieter Verfaillie2013-10-081-143/+141
* giscanner: reindent re documentationDieter Verfaillie2013-10-081-101/+101
* giscanner: improve inline docsDieter Verfaillie2013-10-081-23/+106
* tests: Update misc/pep8.py to 1.4.6Dieter Verfaillie2013-10-081-28/+19
* tests: Update misc/pep8.py to 1.4.5Dieter Verfaillie2013-05-071-27/+38
* annotationparser: Remove get_tag/get_paramJasper St. Pierre2013-05-071-6/+0
* giscanner: move odict.OrderedDict into a collections packageDieter Verfaillie2013-05-071-1/+1
* giscanner: use SqlAlchemy's OrderedDict implementationDieter Verfaillie2013-04-091-4/+4
* giscanner: fix string formatting tuplesDieter Verfaillie2013-04-091-10/+10
* giscanner: emit a warning when we fail to parse a GTK-Doc comment blockDieter Verfaillie2013-01-091-1/+7
* giscanner: Don't fail on empty GTK-Doc comment blocksDieter Verfaillie2013-01-091-11/+14
* scanner: Parse comments with */ not on a new line, but emit a warningDieter Verfaillie2012-12-021-4/+21
* giscanner: don't continue parsing after multiline descriptionsDieter Verfaillie2012-11-281-2/+2
* giscanner: fix DocBlock().commentDieter Verfaillie2012-11-281-5/+4
* giscanner: update annotationparser to most recent gtkdoc-mkdb bug fixes.Dieter Verfaillie2012-11-281-3/+29
* giscanner: remove re.MULTILINE usage from annotationparserDieter Verfaillie2012-11-281-12/+11
* giscanner: Correctly detect invalid GTK-Doc comment block end markersDieter Verfaillie2012-11-281-0/+3
* giscanner: treat the GTK-Doc Description: tag like any other tagDieter Verfaillie2012-11-281-14/+19
* giscanner: construct list of possible tag names for TAG_RE from _ALL_TAGS...Dieter Verfaillie2012-11-281-5/+219
* giscanner: use re.match() instead of re.search()Dieter Verfaillie2012-11-281-10/+10
* giscanner: drop dead codeDieter Verfaillie2012-11-281-10/+2
* giscanner: make it clear DocOptions() also has a position attributeDieter Verfaillie2012-11-281-0/+1
* giscanner: implement DocOption() in terms of odict instead of dictDieter Verfaillie2012-11-281-1/+1
* giscanner: remove unused variablesDieter Verfaillie2012-11-281-13/+1
* giscanner: use dict.values() in favor of dict.itervalues()Dieter Verfaillie2012-11-281-2/+2
* giscanner: use dict.items()...Dieter Verfaillie2012-11-281-6/+5
* giscanner: use "if in [a, b]" instead of "if == a or if == b"Dieter Verfaillie2012-11-281-2/+2
* giscanner: improve wording of inline documentationDieter Verfaillie2012-11-281-36/+57
* annotationparser: cleanup and add tests for the new warnings we now emitDieter Verfaillie2012-04-171-30/+21
* Revert "annotationparser: indent _parse_comment_block gtkdoc code"Dieter Verfaillie2012-04-171-95/+95
* annotationparser: indent _parse_comment_block gtkdoc codeAlban Browaeys2012-04-171-89/+90
* annotationparser: split validate() into sub-methodsWill Thompson2012-04-091-58/+67
* annotationparser: correct "maximium" in error messagesWill Thompson2012-04-091-3/+3
* annotationparser: remove duplication of annotation namesWill Thompson2012-04-091-13/+13
* Split parameter and tag storage in annotationparser parse treeDieter Verfaillie2012-04-051-24/+32
* Don't parse doc comments in dependenciesJohan Dahlin2012-04-051-0/+3
* Replace ''' with """, to avoid confusing syntax highlightning in emacsJohan Dahlin2012-04-051-8/+8
* Now make AnnotationParser do what gobject-introspection needs it to do.Dieter Verfaillie2012-04-051-222/+443
* Make AnnotationParser._parse_comment() do what gtk-doc does.Dieter Verfaillie2012-04-051-169/+226
* Add a floating alias for noneJohan Dahlin2011-11-251-1/+3
* Add constant value annotationJohan Dahlin2011-09-141-1/+3