Add pointers to the relevant issue for some bugs.

This commit is contained in:
Ms2ger 2014-07-26 17:11:13 +02:00
parent 5ed95e410b
commit 875eda69e4
2 changed files with 2 additions and 1 deletions

View file

@ -85,6 +85,7 @@ impl CallbackInterface {
if !callable.is_object() ||
JS_ObjectIsCallable(cx, callable.to_object()) == 0 {
// FIXME(#347)
//ThrowErrorMessage(cx, MSG_NOT_CALLABLE, description.get());
return Err(());
}

View file

@ -354,7 +354,7 @@ fn CreateInterfacePrototypeObject(cx: *mut JSContext, global: *mut JSObject,
}
pub extern fn ThrowingConstructor(_cx: *mut JSContext, _argc: c_uint, _vp: *mut JSVal) -> JSBool {
//XXX should trigger exception here
// FIXME(#347) should trigger exception here
return 0;
}