(
Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args)
| 630 | } |
| 631 | |
| 632 | private static Object sqrt( |
| 633 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |
| 634 | double x = ScriptRuntime.toNumber(args, 0); |
| 635 | x = Math.sqrt(x); |
| 636 | return ScriptRuntime.wrapNumber(x); |
| 637 | } |
| 638 | |
| 639 | private static Object tan( |
| 640 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |