IFuncDefStore

- `addFunctionDef(Function func)` may now throw a `FuncDefStoreException` when you add a function that already exists
This commit is contained in:
Tristan B. Velloza Kildaire 2023-12-10 12:04:17 +02:00
parent e345137988
commit b375683d3b
1 changed files with 3 additions and 0 deletions

View File

@ -20,6 +20,9 @@ public interface IFuncDefStore
*
* Params:
* func = the function to add
* Throws:
* FuncDefStoreException if the function
* has already been added
*/
public void addFunctionDef(Function func);