CompositeScopeNames lists all high-level coder:* names in sorted order.
()
| 180 | |
| 181 | // CompositeScopeNames lists all high-level coder:* names in sorted order. |
| 182 | func CompositeScopeNames() []string { |
| 183 | out := make([]string, 0, len(compositePerms)) |
| 184 | for k := range compositePerms { |
| 185 | out = append(out, string(k)) |
| 186 | } |
| 187 | slices.Sort(out) |
| 188 | return out |
| 189 | } |
| 190 | |
| 191 | type ExpandableScope interface { |
| 192 | Expand() (Scope, error) |
no outgoing calls
no test coverage detected