(typeName: string, isRequired: boolean)
| 305 | } |
| 306 | |
| 307 | function requiresArgumentNullCheck(typeName: string, isRequired: boolean): boolean { |
| 308 | return isRequired && !typeName.endsWith("?") && !isNonNullableCSharpValueType(typeName); |
| 309 | } |
| 310 | |
| 311 | async function formatCSharpFile(filePath: string): Promise<void> { |
| 312 | try { |
no test coverage detected
searching dependent graphs…