diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-10-07 17:34:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-07 21:04:03 +0530 |
commit | edeccef4990598620bf5595df6fc8c1b1b1a7f73 (patch) | |
tree | 6a14ba0113fed8c3afd4e5ffe94617bd0fa1648b /cli/ops | |
parent | be7e2bd8c1883c6bf58db8ff40954ed7ee53b5c5 (diff) |
refactor: migrate more ops to op2 macro (#20808)
Getting closer...
Diffstat (limited to 'cli/ops')
-rw-r--r-- | cli/ops/testing.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cli/ops/testing.rs b/cli/ops/testing.rs index cb3788cdc..7454670c6 100644 --- a/cli/ops/testing.rs +++ b/cli/ops/testing.rs @@ -1,9 +1,5 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -// TODO: allow everywhere because `#[allow(clippy::too_many_arguments)]` on -// `#[op(fast)]` does not work. https://github.com/denoland/rusty_v8/issues/1332 -#![allow(clippy::too_many_arguments)] - use crate::tools::test::TestDescription; use crate::tools::test::TestEvent; use crate::tools::test::TestEventSender; @@ -117,6 +113,7 @@ struct TestRegisterResult { static NEXT_ID: AtomicUsize = AtomicUsize::new(0); +#[allow(clippy::too_many_arguments)] #[op2] #[string] fn op_register_test( |