(_identifier: string, _namespace?: string)
| 48 | public readonly namespace?: string |
| 49 | |
| 50 | constructor(_identifier: string, _namespace?: string) { |
| 51 | this.identifier = normalizeName(_identifier) |
| 52 | if (_namespace) this.namespace = normalizeName(_namespace) |
| 53 | } |
| 54 | |
| 55 | toString() { |
| 56 | if (this.namespace) { |
nothing calls this directly
no test coverage detected