()
| 171 | } |
| 172 | |
| 173 | getContentAttr(): string | undefined { |
| 174 | const attrs = this.ref.nativeElement.attributes |
| 175 | for (let i = 0, l = attrs.length; i < l; i++) { |
| 176 | if (attrs[i].name.startsWith("_nghost")) { |
| 177 | return `_ngcontent-${attrs[i].name.substring(8)}` |
| 178 | } |
| 179 | } |
| 180 | return undefined; |
| 181 | } |
| 182 | |
| 183 | nullTrack() {} |
| 184 |
nothing calls this directly
no outgoing calls
no test coverage detected