* Get the function name for %%key%%, which may be a function selector, * function name or function signature that belongs to the ABI.
(key)
| 421 | * function name or function signature that belongs to the ABI. |
| 422 | */ |
| 423 | getFunctionName(key) { |
| 424 | const fragment = this.#getFunction(key, null, false); |
| 425 | assertArgument(fragment, "no matching function", "key", key); |
| 426 | return fragment.name; |
| 427 | } |
| 428 | /** |
| 429 | * Returns true if %%key%% (a function selector, function name or |
| 430 | * function signature) is present in the ABI. |
no test coverage detected