(ExecutionContext context, Object self, Object... args)
| 14 | } |
| 15 | |
| 16 | @Override |
| 17 | public Object call(ExecutionContext context, Object self, Object... args) { |
| 18 | if (DynNumber.isNaN(args[0])) { |
| 19 | return Double.NaN; |
| 20 | } |
| 21 | final Double arg = Types.toNumber(context, args[0]).doubleValue(); |
| 22 | return Math.coerceLongIfPossible(java.lang.Math.log(arg)); |
| 23 | } |
| 24 | |
| 25 | @Override |
| 26 | public void setFileName() { |
nothing calls this directly
no test coverage detected