mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
clippy: Allow too_many_arguments
for all functions (#31962)
This is the start of preventing this in the future. Co-authored-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
8c1a72f130
commit
0da2508e4d
23 changed files with 51 additions and 0 deletions
|
@ -301,6 +301,7 @@ impl WorkletThreadPool {
|
|||
/// If all of the threads load successfully, the promise is resolved.
|
||||
/// If any of the threads fails to load, the promise is rejected.
|
||||
/// <https://drafts.css-houdini.org/worklets/#fetch-and-invoke-a-worklet-script>
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
fn fetch_and_invoke_a_worklet_script(
|
||||
&self,
|
||||
pipeline_id: PipelineId,
|
||||
|
@ -625,6 +626,7 @@ impl WorkletThread {
|
|||
|
||||
/// Fetch and invoke a worklet script.
|
||||
/// <https://drafts.css-houdini.org/worklets/#fetch-and-invoke-a-worklet-script>
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
fn fetch_and_invoke_a_worklet_script(
|
||||
&self,
|
||||
global_scope: &WorkletGlobalScope,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue