()
| 117 | } |
| 118 | |
| 119 | createMethods() { |
| 120 | return compact([ |
| 121 | this.createConstructor(), |
| 122 | ...this.methods.map(method => { |
| 123 | method.setSuperClass(this.superClass); |
| 124 | return method.toMethodDefinition(); |
| 125 | }) |
| 126 | ]); |
| 127 | } |
| 128 | |
| 129 | createConstructor() { |
| 130 | return this.constructor.isEmpty() ? undefined : this.constructor.toMethodDefinition(); |
no test coverage detected