Gets the overloaded method with the given parameter types.
(...parameterTypes)
| 11904 | } |
| 11905 | /** Gets the overloaded method with the given parameter types. */ |
| 11906 | overload(...parameterTypes) { |
| 11907 | const result = this.tryOverload(...parameterTypes); |
| 11908 | if (result != undefined) |
| 11909 | return result; |
| 11910 | (0, console_1.raise)(`cannot find overloaded method ${this.name}(${parameterTypes})`); |
| 11911 | } |
| 11912 | /** Gets the parameter with the given name. */ |
| 11913 | parameter(name) { |
| 11914 | return this.tryParameter(name); |
no test coverage detected