* Register a function definition.
(def: FunctionDefinition)
| 96 | * Register a function definition. |
| 97 | */ |
| 98 | public register(def: FunctionDefinition): void { |
| 99 | // Store with lowercase name for case-insensitive lookup |
| 100 | this.#functions.set(def.name.toLowerCase(), def); |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Look up a function by name (case-insensitive). |
no outgoing calls
no test coverage detected