We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bed1ca4 commit d1b6feeCopy full SHA for d1b6fee
1 file changed
mkdocstrings/handlers/crystal/items.py
@@ -269,6 +269,11 @@ def aliased(self) -> crystal_html.TextWithLinks:
269
except KeyError:
270
return crystal_html.TextWithLinks(self.data["aliased"], ())
271
272
+ @property
273
+ def constants(self):
274
+ # Crystal duplicates constants into aliases, but that's undesirable.
275
+ return DocMapping(())
276
+
277
278
class DocAnnotation(DocType):
279
"""A [DocType][mkdocstrings.handlers.crystal.items.DocType] representing a Crystal annotation."""
0 commit comments