Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(doc): add support for @custom:variant documentation for enums #9905

Conversation

gregorsternat
Copy link
Contributor

@gregorsternat gregorsternat commented Feb 17, 2025

Motivation

Currently, Solidity doesn't support @param documentation for enum variants,
resulting in incomplete documentation when using forge doc. This change addresses
the issue by allowing developers to document each enum variant individually using a
new @custom:variant tag.

Solution

This PR updates the documentation parser to recognize the @custom:variant tag in
crates/doc/src/parser/comment.rs and modifies the documentation writer in
crates/doc/src/writer/as_doc.rs to include the variant descriptions in the generated
documentation. This enhancement enables more granular and clear documentation for enums,
thereby improving the developer experience.

PR Checklist

  • Added Tests
  • Added Documentation
  • Breaking changes

Solidity currently doesn't support @param for enums according to the
Natspec format,making it impossible to document each enum variant using
forge doc. This commit introducesa new @Custom:variant tag to allow
individual enum variant descriptions.Changes:- Updated parsing in
`crates/doc/src/parser/comment.rs` to extract @Custom:variant tags.-
Modified documentation generation in `crates/doc/src/writer/as_doc.rs`
to include variant descriptions.
writer.write_section(comments, code)
writer.write_section(comments, code)?;

let variants: Vec<_> = comments

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't forget to format your code, with cargo +nightly fmt, to avoid this indentation issue. Also, you can use collect::<Vec<_>>() instead of : Vec<_>

Some((name.trim().to_string(), desc.trim().to_string()))
})
.collect();
if !variants.is_empty() {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you can add a break line before and after the if statement

writer.writeln_raw(&format!("| `{}` | {} |", name, desc))?;
}
}
Ok::<_, std::fmt::Error>(())

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think the type needs to be explicit

writer.writeln_doc(&item.comments)?;
writer.write_code(&item.code)?;

let variants: Vec<_> = item.comments

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here for the Vec<_> type

Some((name.trim().to_string(), desc.trim().to_string()))
})
.collect();
if !variants.is_empty() {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A breakline before the if statement can be appreciate

@@ -21,6 +21,7 @@ pub enum CommentTag {
/// Copies all missing tags from the base function (must be followed by the contract name)
Inheritdoc,
/// Custom tag, semantics is application-defined
Variant,
Copy link
Contributor

@srdtrk srdtrk Feb 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Every element of this enum is one of the natspec tags defined in the specs here. And variant isn't one of them.

Instead, is it not possible to parse this as Custom("variant") and do the filtering in the writer?

@zerosnacks
Copy link
Member

Hi @gregorsternat thanks for your PR

I would prefer if we can get this resolved in Solidity with this PR: ethereum/solidity#14193 rather than Foundry implementing a workaround

From basic tests I can confirm enum value definitions are not outputted by forge doc.

The proposed format would look like:

enum Color {
	Red,
	/// @notice example of notice
	/// @dev example of dev
	Green,
	/// @dev example of dev
	Blue
}

zerosnacks added a commit to samooyo/foundry that referenced this pull request Mar 7, 2025
@zerosnacks
Copy link
Member

Hi @gregorsternat thanks for your PR, given that Solidity has been slow to implement this I would like to move ahead with this but in the meantime a different PR addressing this has been raised.

I've added you as co-author on #10022 given your work on this.

Closing in favor of #10022

@zerosnacks zerosnacks closed this Mar 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

4 participants