| 26 | /// 多态 |
| 27 | |
| 28 | class Monkey extends Animal { |
| 29 | sleep() { |
| 30 | console.log('Monkey sleep') |
| 31 | } |
| 32 | } |
| 33 | let monkey = new Monkey() |
| 34 | let animals: Animal[] = [cat,monkey] |
| 35 | animals.forEach(item=>{ |
nothing calls this directly
no outgoing calls
no test coverage detected