(remote, devtoolsRefPattern string)
| 1075 | } |
| 1076 | |
| 1077 | func getRemoteDevtoolsRef(remote, devtoolsRefPattern string) string { |
| 1078 | relativeRef := strings.TrimPrefix(devtoolsRefPattern, devtoolsRefPrefix) |
| 1079 | return remoteDevtoolsRefPrefix + remote + "/" + relativeRef |
| 1080 | } |
| 1081 | |
| 1082 | func getLocalDevtoolsRef(remote, remoteDevtoolsRef string) string { |
| 1083 | relativeRef := strings.TrimPrefix(remoteDevtoolsRef, remoteDevtoolsRefPrefix+remote+"/") |
no outgoing calls
no test coverage detected