* Returns true if %%key%% (a function selector, function name or * function signature) is present in the ABI. * * In the case of a function name, the name may be ambiguous, so * accessing the [[FunctionFragment]] may require refinement.
(key: string)
| 550 | * accessing the [[FunctionFragment]] may require refinement. |
| 551 | */ |
| 552 | hasFunction(key: string): boolean { |
| 553 | return !!this.#getFunction(key, null, false); |
| 554 | } |
| 555 | |
| 556 | /** |
| 557 | * Get the [[FunctionFragment]] for %%key%%, which may be a function |
nothing calls this directly
no test coverage detected