(typeName: string)
| 271 | } |
| 272 | |
| 273 | function isNonNullableCSharpValueType(typeName: string): boolean { |
| 274 | return [ |
| 275 | "bool", |
| 276 | "double", |
| 277 | "float", |
| 278 | "Guid", |
| 279 | "int", |
| 280 | "long", |
| 281 | "DateTimeOffset", |
| 282 | "TimeSpan", |
| 283 | "JsonElement", |
| 284 | ].includes(typeName) || generatedEnums.has(typeName) || emittedRpcEnumResultTypes.has(typeName) || externalRpcValueTypes.has(typeName); |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * Schemas marked `.asOpaqueJson()` on the runtime side carry |
no outgoing calls
no test coverage detected
searching dependent graphs…