()
| 77 | type EmptyReferenceError struct{} |
| 78 | |
| 79 | func (e *EmptyReferenceError) Error() string { |
| 80 | return "empty reference string" |
| 81 | } |
| 82 | |
| 83 | // ParseRefString parses a string reference (either "namespace/name" or just "name") |
| 84 | // into a NamespacedName object, using parentNamespace when namespace is not specified. |
no outgoing calls