diff options
author | Ravi Shankar <wafflespeanut@gmail.com> | 2015-08-03 21:51:35 +0530 |
---|---|---|
committer | Ravi Shankar <wafflespeanut@gmail.com> | 2015-08-03 21:51:35 +0530 |
commit | 5260e64847ca7cd4ab5a488036bacf3a3f92452b (patch) | |
tree | c2bbf72a19e163fc3cd63eb2e8a92af4845b6f7b /components/script/devtools.rs | |
parent | 1809748dc12ec63e3179b66109c91983f744c235 (diff) | |
download | servo-5260e64847ca7cd4ab5a488036bacf3a3f92452b.tar.gz servo-5260e64847ca7cd4ab5a488036bacf3a3f92452b.zip |
Removed an invalid FIXME and fixed a doc comment
Diffstat (limited to 'components/script/devtools.rs')
-rw-r--r-- | components/script/devtools.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/components/script/devtools.rs b/components/script/devtools.rs index 8c40af12c73..33dd19c64c4 100644 --- a/components/script/devtools.rs +++ b/components/script/devtools.rs @@ -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(); |