| 31 | * @publicApi |
| 32 | */ |
| 33 | export class HostAttributeToken { |
| 34 | constructor(private attributeName: string) {} |
| 35 | |
| 36 | /** @internal */ |
| 37 | __NG_ELEMENT_ID__ = () => ɵɵinjectAttribute(this.attributeName); |
| 38 | |
| 39 | toString(): string { |
| 40 | return `HostAttributeToken ${this.attributeName}`; |
| 41 | } |
| 42 | } |
nothing calls this directly
no test coverage detected