| 26 | eat() {} |
| 27 | } |
| 28 | class CatA implements CatInterface { |
| 29 | jump() {} |
| 30 | eat() {} |
| 31 | } |
| 32 | enum Master { Boy, Girl} |
| 33 | function getPet(master: Master){ |
| 34 | let pet = master === Master.Boy ? new DogA() :new CatA(); |
nothing calls this directly
no outgoing calls
no test coverage detected