(other scopeSet)
| 1286 | } |
| 1287 | |
| 1288 | func (s scopeSet) Intersects(other scopeSet) bool { |
| 1289 | for scope := range s { |
| 1290 | if _, found := other[scope]; found { |
| 1291 | return true |
| 1292 | } |
| 1293 | } |
| 1294 | return false |
| 1295 | } |
| 1296 | |
| 1297 | func newScopeSet(s string) scopeSet { |
| 1298 | scopes := scopeSet{} |
no outgoing calls
no test coverage detected