pull main & udpate lint

This commit is contained in:
Mathieu Lala
2023-02-05 17:59:02 +01:00
parent 097fa1f4e3
commit 9bdf3c290d
12 changed files with 44 additions and 41 deletions

View File

@@ -287,7 +287,6 @@ pub enum Expr {
Array(Box<StaticVec<Expr>>, Position),
/// #{ name:expr, ... }
Map(
#[allow(clippy::type_complexity)]
Box<(StaticVec<(Ident, Expr)>, BTreeMap<Identifier, Dynamic>)>,
Position,
),
@@ -305,7 +304,6 @@ pub enum Expr {
),
/// Property access - ((getter, hash), (setter, hash), prop)
Property(
#[allow(clippy::type_complexity)]
Box<(
(ImmutableString, u64),
(ImmutableString, u64),