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
We should generate doc comments for each variant of TerminalKind and NonterminalKind. More specifically, it should contain something like:
// This kind represents a `{ variant name }` node, with the following structure:// {variant docs}
The initial ground work for this has been done in:
codegen_ebnf::EbnfModel type, where it can generate EBNF docs for each variant separately.
terminal_kind.rs.jinja2 and nonterminal_kind.rs.jinja2 where they have a commented out snippet like below. Maybe we can change variant to be a structure containing .name and .documentation instead:
We should generate doc comments for each variant of
TerminalKind
andNonterminalKind
. More specifically, it should contain something like:The initial ground work for this has been done in:
codegen_ebnf::EbnfModel
type, where it can generate EBNF docs for each variant separately.terminal_kind.rs.jinja2
andnonterminal_kind.rs.jinja2
where they have a commented out snippet like below. Maybe we can changevariant
to be a structure containing.name
and.documentation
instead:The text was updated successfully, but these errors were encountered: