(
Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args)
| 158 | } |
| 159 | |
| 160 | private static Object js_has( |
| 161 | Context cx, JSFunction f, Object nt, VarScope s, Object thisObj, Object[] args) { |
| 162 | return realThis(thisObj, "has").js_has(key(args)); |
| 163 | } |
| 164 | |
| 165 | private Object js_has(Object arg) { |
| 166 | return entries.has(arg); |