mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
clippy: Allow too_many_arguments
for existing functions (#31974)
* Allow `too_many_arguments` for existing functions * fix: Surround ASCII with code block in rustdoc
This commit is contained in:
parent
f613159cba
commit
cc082efbfd
36 changed files with 86 additions and 64 deletions
|
@ -3060,6 +3060,7 @@ pub enum HasBrowsingContext {
|
|||
}
|
||||
|
||||
impl Document {
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
pub fn new_inherited(
|
||||
window: &Window,
|
||||
has_browsing_context: HasBrowsingContext,
|
||||
|
@ -3315,6 +3316,7 @@ impl Document {
|
|||
))
|
||||
}
|
||||
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
pub fn new(
|
||||
window: &Window,
|
||||
has_browsing_context: HasBrowsingContext,
|
||||
|
@ -3348,6 +3350,7 @@ impl Document {
|
|||
)
|
||||
}
|
||||
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
fn new_with_proto(
|
||||
window: &Window,
|
||||
proto: Option<HandleObject>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue