Gets the method with the given name.
(name, parameterCount = -1)
| 32 | } |
| 33 | /** Gets the method with the given name. */ |
| 34 | method(name, parameterCount = -1) { |
| 35 | return this.class.method(name, parameterCount).withHolder(this); |
| 36 | } |
| 37 | /** Notifies a thread in the waiting queue of a change in the locked object's state. */ |
| 38 | pulse() { |
| 39 | return Il2Cpp.Api._monitorPulse(this); |
nothing calls this directly
no test coverage detected