pub fn get_dictionary_property(
cx: *mut JSContext,
object: HandleObject<'_>,
property: &str,
rval: MutableHandleValue<'_>,
) -> Result<bool, ()>
Expand description
Get the property with name property
from object
.
Returns Err(())
on JSAPI failure (there is a pending exception), and
Ok(false)
if there was no property with the given name.