| 90 | // =============================================================== |
| 91 | |
| 92 | class Rectangle extends Polygon { |
| 93 | constructor(height, width) { |
| 94 | super(height, width); |
| 95 | this.name = 'Rectangle'; |
nothing calls this directly
no outgoing calls
no test coverage detected