[Github-comments] [geany] Gtkdoc hdr (#890)
Colomban Wendling
notifications at xxxxx
Thu Feb 18 16:40:05 UTC 2016
> +
> +class AtDoc(object):
> + def __init__(self):
> + self.retval = None
> + self.since = ""
> + self.annot = []
> +
> + def cb(self, type, str):
> + if (type == "param"):
> + words = str.split(" ", 2);
> + self.annot = []
> + elif (type == "return"):
> + self.annot = []
> + elif (type == "since"):
> + self.since = str.rstrip()
> + elif (type == "geany:skip"):
this is handled right below again
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/890/files#r53341661
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20160218/4e89ee9e/attachment.html>
More information about the Github-comments
mailing list