Gets the field with the given name.
(name)
| 12074 | } |
| 12075 | /** Gets the field with the given name. */ |
| 12076 | tryField(name) { |
| 12077 | return this.class.tryField(name)?.withHolder(this); |
| 12078 | } |
| 12079 | /** Gets the field with the given name. */ |
| 12080 | tryMethod(name, parameterCount = -1) { |
| 12081 | return this.class.tryMethod(name, parameterCount)?.withHolder(this); |
nothing calls this directly
no test coverage detected