aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/bindings/error.rs')
-rw-r--r--components/script/dom/bindings/error.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/components/script/dom/bindings/error.rs b/components/script/dom/bindings/error.rs
index 13bdd97cad1..b9d51e77fcf 100644
--- a/components/script/dom/bindings/error.rs
+++ b/components/script/dom/bindings/error.rs
@@ -20,7 +20,6 @@ pub(crate) use script_bindings::error::*;
#[cfg(feature = "js_backtrace")]
use crate::dom::bindings::cell::DomRefCell;
-use crate::dom::bindings::codegen::PrototypeList::proto_id_to_name;
use crate::dom::bindings::conversions::{
ConversionResult, FromJSValConvertible, ToJSValConvertible, root_from_object,
};
@@ -257,23 +256,6 @@ pub(crate) fn report_pending_exception(
}
}
-/// Throw an exception to signal that a `JSObject` can not be converted to a
-/// given DOM type.
-pub(crate) fn throw_invalid_this(cx: SafeJSContext, proto_id: u16) {
- debug_assert!(unsafe { !JS_IsExceptionPending(*cx) });
- let error = format!(
- "\"this\" object does not implement interface {}.",
- proto_id_to_name(proto_id)
- );
- unsafe { throw_type_error(*cx, &error) };
-}
-
-pub(crate) fn throw_constructor_without_new(cx: SafeJSContext, name: &str) {
- debug_assert!(unsafe { !JS_IsExceptionPending(*cx) });
- let error = format!("{} constructor: 'new' is required", name);
- unsafe { throw_type_error(*cx, &error) };
-}
-
pub(crate) trait ErrorToJsval {
fn to_jsval(
self,