Default Enum values should be validated and linked
Open
Nobody has claimed this yet.
- Dominant language
- JavaScript
- Stars
- 806
- Forks
- 434
- Avg merge
- 1d 21h
- Merged PRs (30d)
- 32
Description
For example:
dictionary SerialOptions {
ParityType parity = "none";
};
enum ParityType {
"none",
};
We should check if "none" is in ParityType and, if it is, we should link to it.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Search the JavaScript source for the code that processes dictionary defaults and enum declarations, then trace how enum values are currently resolved and linked. Use the provided SerialOptions and ParityType example as the starting case. Done means an enum default is validated against its declaration and, when present, links to that enum value.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100