(
Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args)
| 169 | } |
| 170 | |
| 171 | private static Object atan2( |
| 172 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |
| 173 | double x = ScriptRuntime.toNumber(args, 0); |
| 174 | x = Math.atan2(x, ScriptRuntime.toNumber(args, 1)); |
| 175 | return ScriptRuntime.wrapNumber(x); |
| 176 | } |
| 177 | |
| 178 | private static Object cbrt( |
| 179 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |
no test coverage detected