(&self, rhs: PyJsValueRef, vm: &VirtualMachine)
| 259 | |
| 260 | #[pymethod] |
| 261 | fn instanceof(&self, rhs: PyJsValueRef, vm: &VirtualMachine) -> PyResult<bool> { |
| 262 | instance_of(&self.value, &rhs.value).map_err(|err| new_js_error(vm, err)) |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | impl Representable for PyJsValue { |
nothing calls this directly
no test coverage detected