Removed an invalid FIXME and fixed a doc comment

This commit is contained in:
Ravi Shankar 2015-08-03 21:51:35 +05:30
parent 1809748dc1
commit 5260e64847
2 changed files with 19 additions and 21 deletions

View file

@ -44,7 +44,6 @@ pub fn handle_evaluate_js(global: &GlobalRef, eval: String, reply: IpcSender<Eva
} else if rval.ptr.is_null() {
EvaluateJSReply::NullValue
} else {
//FIXME: jsvals don't have an is_int32/is_number yet
assert!(rval.ptr.is_object());
panic!("object values unimplemented")
}).unwrap();