Skip to content

Commit

Permalink
chore(compiler): remove dead code (#7168)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chriscbr authored Sep 25, 2024
1 parent 6d0e1bc commit 9176564
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions packages/@winglang/wingc/src/type_check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -914,18 +914,6 @@ impl FunctionSignature {
}
}

impl PartialEq for FunctionSignature {
fn eq(&self, other: &Self) -> bool {
self
.parameters
.iter()
.zip(other.parameters.iter())
.all(|(x, y)| x.typeref.is_same_type_as(&y.typeref))
&& self.return_type.is_same_type_as(&other.return_type)
&& self.phase == other.phase
}
}

impl Display for SymbolKind {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Expand Down

0 comments on commit 9176564

Please sign in to comment.