(name: string, color: string)
| 54 | |
| 55 | class TestDog3 extends Dog3 { |
| 56 | constructor(name: string, color: string){ |
| 57 | super(name) |
| 58 | this.color = color |
| 59 | // this.pri() // 不能被子类调用 |
| 60 | } |
| 61 | color: string |
| 62 | } |
nothing calls this directly
no outgoing calls
no test coverage detected