()
| 203 | abstract class ServiceBase { |
| 204 | abstract name: string; |
| 205 | canActivate() { |
| 206 | canActivateLog.push(this.name); |
| 207 | return true; |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | @Injectable() |
nothing calls this directly
no test coverage detected
searching dependent graphs…