Skip to content

Commit

Permalink
fix(cellUnderflow): comma is not logical &&
Browse files Browse the repository at this point in the history
  • Loading branch information
jubnzv committed Nov 19, 2024
1 parent 2998552 commit 1ecfd29
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/detectors/builtin/cellUnderflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,11 +214,11 @@ class CellUnderflowLattice implements JoinSemilattice<CellUnderflowState> {

leq(a: CellUnderflowState, b: CellUnderflowState): boolean {
return (
isMapSubsetOf(a.builders, b.builders),
isMapSubsetOf(a.cells, b.cells),
isMapSubsetOf(a.slices, b.slices),
isMapSubsetOf(a.messages, b.messages),
isMapSubsetOf(a.structs, b.structs),
isMapSubsetOf(a.builders, b.builders) &&
isMapSubsetOf(a.cells, b.cells) &&
isMapSubsetOf(a.slices, b.slices) &&
isMapSubsetOf(a.messages, b.messages) &&
isMapSubsetOf(a.structs, b.structs) &&
isListSubsetOf(a.intermediateVariables, b.intermediateVariables)
);
}
Expand Down

0 comments on commit 1ecfd29

Please sign in to comment.