Add a builtin with the specified name and signatures to this db. This defaults to not using a Prepare/Close function.
(String fnName, String symbol, boolean userVisible,
boolean varArgs, Type retType, Type ... args)
| 436 | * This defaults to not using a Prepare/Close function. |
| 437 | */ |
| 438 | public void addScalarBuiltin(String fnName, String symbol, boolean userVisible, |
| 439 | boolean varArgs, Type retType, Type ... args) { |
| 440 | addScalarBuiltin(fnName, symbol, userVisible, null, null, varArgs, retType, args); |
| 441 | } |
| 442 | |
| 443 | /** |
| 444 | * Add a builtin with the specified name and signatures to this db. |
no test coverage detected