(
Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args)
| 183 | } |
| 184 | |
| 185 | private static Object ceil( |
| 186 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |
| 187 | double x = ScriptRuntime.toNumber(args, 0); |
| 188 | x = Math.ceil(x); |
| 189 | return ScriptRuntime.wrapNumber(x); |
| 190 | } |
| 191 | |
| 192 | private static Object clz32( |
| 193 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |
no test coverage detected