Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Machy8 committed Dec 26, 2023
1 parent 400b88a commit 83c087f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/signalizejs/src/plugins/evaluate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,11 +274,11 @@ export default () => {
const token = chunks[cursorIndex];

if (token === openToken) {
closingBracesRequired ++;
closingBracesRequired++;
}

if (token === closeToken) {
closingBracesRequired --;
closingBracesRequired--;
}

if (closingBracesRequired === 0) {
Expand Down

0 comments on commit 83c087f

Please sign in to comment.