(enumValueDescriptions: EnumValueDescriptions | undefined, value: string)
| 211 | } |
| 212 | |
| 213 | function xmlDocEnumMemberComment(enumValueDescriptions: EnumValueDescriptions | undefined, value: string): string[] { |
| 214 | const description = enumValueDescriptions?.[value]; |
| 215 | if (description) return xmlDocComment(description, " "); |
| 216 | return rawXmlDocSummary(`Gets the <c>${escapeXml(value)}</c> value.`, " "); |
| 217 | } |
| 218 | |
| 219 | function toPascalCase(name: string): string { |
| 220 | const parts = splitCSharpIdentifierParts(name); |
no test coverage detected
searching dependent graphs…