(files []*report.ArtifactProps)
| 1003 | } |
| 1004 | |
| 1005 | func artifactsByFilePath(files []*report.ArtifactProps) map[string]*report.ArtifactProps { |
| 1006 | dict := make(map[string]*report.ArtifactProps) |
| 1007 | for _, props := range files { |
| 1008 | if props != nil { |
| 1009 | dict[props.FilePath] = props |
| 1010 | } |
| 1011 | } |
| 1012 | return dict |
| 1013 | } |
| 1014 | |
| 1015 | func mondelEventByFilePath(events []report.MonitorDataEvent) map[string]report.MonitorDataEvent { |
| 1016 | dict := make(map[string]report.MonitorDataEvent) |
no outgoing calls
no test coverage detected