Skip to content

Commit

Permalink
Jimmy 'the linter' Hoffa
Browse files Browse the repository at this point in the history
  • Loading branch information
demmings committed Mar 14, 2024
1 parent cda3280 commit 500035e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/gssql.js
Original file line number Diff line number Diff line change
Expand Up @@ -6150,7 +6150,7 @@ class CondParser {
let leftNode = this.parseConditionExpression();

while (this.currentToken.type === 'logic') {
let logic = this.currentToken.value;
const logic = this.currentToken.value;
this.readNextToken();

const rightNode = this.parseConditionExpression();
Expand Down
2 changes: 1 addition & 1 deletion src/SimpleParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ class CondParser {
let leftNode = this.parseConditionExpression();

while (this.currentToken.type === 'logic') {
let logic = this.currentToken.value;
const logic = this.currentToken.value;
this.readNextToken();

const rightNode = this.parseConditionExpression();
Expand Down

0 comments on commit 500035e

Please sign in to comment.