(
Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args)
| 147 | } |
| 148 | |
| 149 | private static Object atan( |
| 150 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |
| 151 | double x = ScriptRuntime.toNumber(args, 0); |
| 152 | x = Math.atan(x); |
| 153 | return ScriptRuntime.wrapNumber(x); |
| 154 | } |
| 155 | |
| 156 | private static Object atanh( |
| 157 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |
no test coverage detected