(Object thisObj, String name)
| 267 | } |
| 268 | |
| 269 | private static NativeMap realThis(Object thisObj, String name) { |
| 270 | NativeMap nm = LambdaConstructor.convertThisObject(thisObj, NativeMap.class); |
| 271 | if (!nm.instanceOfMap) { |
| 272 | // Check for "Map internal data tag" |
| 273 | throw ScriptRuntime.typeErrorById("msg.incompat.call", name); |
| 274 | } |
| 275 | return nm; |
| 276 | } |
| 277 | |
| 278 | /** |
| 279 | * Extracts the key from the first args entry if any and takes care of the Delegator. This is |
no test coverage detected