(
Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args)
| 260 | } |
| 261 | |
| 262 | private static Object floor( |
| 263 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |
| 264 | double x = ScriptRuntime.toNumber(args, 0); |
| 265 | x = Math.floor(x); |
| 266 | return ScriptRuntime.wrapNumber(x); |
| 267 | } |
| 268 | |
| 269 | private static Object f16round( |
| 270 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |