(
Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args)
| 637 | } |
| 638 | |
| 639 | private static Object tan( |
| 640 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |
| 641 | double x = ScriptRuntime.toNumber(args, 0); |
| 642 | x = Math.tan(x); |
| 643 | return ScriptRuntime.wrapNumber(x); |
| 644 | } |
| 645 | |
| 646 | private static Object tanh( |
| 647 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |
no test coverage detected