(source map[string]string)
| 280 | } |
| 281 | merged := make(map[string]etscore.Severity, len(target)+len(source)) |
| 282 | maps.Copy(merged, target) |
| 283 | maps.Copy(merged, source) |
| 284 | return merged |
| 285 | } |
| 286 | |
| 287 | func cloneIntPtr(source *int) *int { |
| 288 | if source == nil { |
| 289 | return nil |
| 290 | } |
| 291 | v := *source |
| 292 | return &v |
no outgoing calls
no test coverage detected