Skip to content

Commit

Permalink
fix: grammar for IN expression using Javascript includes
Browse files Browse the repository at this point in the history
  • Loading branch information
lostfields committed Mar 7, 2024
1 parent 22f3403 commit e1ba365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/linq/peg/grammar/javascript.pegjs
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ QualifiedIdentifier
return {
type: 'RelationalExpression',
operator: 'in',
left: left,
right: right
left: right,
right: left
}
}
/ !ReservedWord qual:Identifier args:Arguments
Expand Down

0 comments on commit e1ba365

Please sign in to comment.