* Get the function name for %%key%%, which may be a function selector, * function name or function signature that belongs to the ABI.
(key: string)
| 537 | * function name or function signature that belongs to the ABI. |
| 538 | */ |
| 539 | getFunctionName(key: string): string { |
| 540 | const fragment = this.#getFunction(key, null, false); |
| 541 | assertArgument(fragment, "no matching function", "key", key); |
| 542 | return fragment.name; |
| 543 | } |
| 544 | |
| 545 | /** |
| 546 | * Returns true if %%key%% (a function selector, function name or |
nothing calls this directly
no test coverage detected