-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Emit comments for literal unions (fix #475)
- Loading branch information
Boris Cherny
committed
Aug 7, 2022
1 parent
34de194
commit 91cd642
Showing
4 changed files
with
177,073 additions
and
31,690 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export const input = { | ||
oneOf: [ | ||
{const: 'a', description: 'First comment (a).'}, | ||
{const: 'b', description: 'Second comment (b).'} | ||
] | ||
} |