type = type.split(":")[1]
self.annot.append("%s %s" % (type, str))
elif (type == "see"):
return "See " + str
elif type in ("a", "c") and str in ("NULL", "TRUE", "FALSE"):
# FIXME: some of Geany does @a NULL instead of @c NULL
return "%" + str
elif (type == "a"):
return "@" + str
else:
return str
return ""
+class At(object):
Unused (?)
--- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/890/files#r54579563