diff options
Diffstat (limited to 'components/script/dom/bindings/interface.rs')
-rw-r--r-- | components/script/dom/bindings/interface.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/script/dom/bindings/interface.rs b/components/script/dom/bindings/interface.rs index e1811ae793f..acce0362cf5 100644 --- a/components/script/dom/bindings/interface.rs +++ b/components/script/dom/bindings/interface.rs @@ -229,6 +229,7 @@ pub fn create_callback_interface_object( } /// Create the interface prototype object of a non-callback interface. +#[allow(clippy::too_many_arguments)] pub fn create_interface_prototype_object( cx: SafeJSContext, global: HandleObject, @@ -273,6 +274,7 @@ pub fn create_interface_prototype_object( } /// Create and define the interface object of a non-callback interface. +#[allow(clippy::too_many_arguments)] pub fn create_noncallback_interface_object( cx: SafeJSContext, global: HandleObject, @@ -353,6 +355,7 @@ pub fn create_named_constructors( } /// Create a new object with a unique type. +#[allow(clippy::too_many_arguments)] pub fn create_object( cx: SafeJSContext, global: HandleObject, |