* Get the [[FunctionFragment]] for %%key%%, which may be a function * selector, function name or function signature that belongs to the ABI. * * If %%values%% is provided, it will use the Typed API to handle * ambiguous cases where multiple functions match by name. *
(key, values)
| 454 | * the ABI, this will throw. |
| 455 | */ |
| 456 | getFunction(key, values) { |
| 457 | return this.#getFunction(key, values || null, true); |
| 458 | } |
| 459 | /** |
| 460 | * Iterate over all functions, calling %%callback%%, sorted by their name. |
| 461 | */ |