()
| 198 | type ScopeName string |
| 199 | |
| 200 | func (name ScopeName) Expand() (Scope, error) { |
| 201 | return ExpandScope(name) |
| 202 | } |
| 203 | |
| 204 | func (name ScopeName) Name() RoleIdentifier { |
| 205 | return RoleIdentifier{Name: string(name)} |
nothing calls this directly
no test coverage detected