* Get the function name for %%key%%, which may be a function selector, * function name or function signature that belongs to the ABI.
(key)
| 332 | * function name or function signature that belongs to the ABI. |
| 333 | */ |
| 334 | getFunctionName(key) { |
| 335 | const fragment = this.#getFunction(key, null, false); |
| 336 | assertArgument(fragment, "no matching function", "key", key); |
| 337 | return fragment.name; |
| 338 | } |
| 339 | /** |
| 340 | * Returns true if %%key%% (a function selector, function name or |
| 341 | * function signature) is present in the ABI. |
nothing calls this directly
no test coverage detected