(&self, name: JsProperty, vm: &VirtualMachine)
| 145 | |
| 146 | #[pymethod] |
| 147 | fn has_prop(&self, name: JsProperty, vm: &VirtualMachine) -> PyResult<bool> { |
| 148 | has_prop(&self.value, &name.into_js_value()).map_err(|err| new_js_error(vm, err)) |
| 149 | } |
| 150 | |
| 151 | #[pymethod] |
| 152 | fn get_prop(&self, name: JsProperty, vm: &VirtualMachine) -> PyResult<PyJsValue> { |
nothing calls this directly
no test coverage detected