Closed nox closed 8 years ago
These functions take a &JSObject, but JSObject is an empty type. This is worrying because doing just *obj on it is UB.
&JSObject
JSObject
*obj
Yeah, that was a stupid idea on my part. It should just take *mut JSObject.
*mut JSObject
I have a PR coming – just doing a local build.
This is fixed now.
These functions take a
&JSObject
, butJSObject
is an empty type. This is worrying because doing just*obj
on it is UB.