You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To enrich auto completion and documentation page generation, MooseEnum items should have individual documentation strings.
Design
Add a map to MooseEnumBase that holds a doc string for each item. Add myenum.addDocumentation("ITEM", "Doc string."); and myenum.addDocumentation({{"ITEM1", "Doc string1."}, {"ITEM1", "Doc string1."}}); methods.
Emit the doc strings in the JSON dump.
Impact
Better self documentation.
The text was updated successfully, but these errors were encountered:
Reason
To enrich auto completion and documentation page generation, MooseEnum items should have individual documentation strings.
Design
Add a map to
MooseEnumBase
that holds a doc string for each item. Addmyenum.addDocumentation("ITEM", "Doc string.");
andmyenum.addDocumentation({{"ITEM1", "Doc string1."}, {"ITEM1", "Doc string1."}});
methods.Emit the doc strings in the JSON dump.
Impact
Better self documentation.
The text was updated successfully, but these errors were encountered: