| 63 | } |
| 64 | |
| 65 | class Model extends Car { |
| 66 | constructor(brand, mod) { |
| 67 | super(brand); |
| 68 | this.model = mod; |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Comment something |
| 73 | */ |
| 74 | show() { |
| 75 | return this.present() + ', it is a ' + this.model; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | class Car { |
| 80 | constructor(brand) { |
nothing calls this directly
no outgoing calls
no test coverage detected