Given an expression like: ```C# "^(?<LINE>[0-9]*)-(?<ENDLINE>[0-9]*)$" ``` the regex source generator will output comments for the groups like: ```C# // 1st capturing group ``` We should include the name if one exists, e.g. ```C# // 1st capturing group ("LINE") ```