(name)
| 10500 | return null; |
| 10501 | } |
| 10502 | getMethod(name) { |
| 10503 | const method = this.findMethod(name); |
| 10504 | if (!method) { |
| 10505 | throw new python.Error(`Method '${name}' not found on class '${this.str()}.`); |
| 10506 | } |
| 10507 | return method; |
| 10508 | } |
| 10509 | methods() { |
| 10510 | return this._methods; |
| 10511 | } |
no test coverage detected