소스 검색

fix: Fix a bug with expression in parenthesis

Add missing token stream position increment in expression with parenthesis parser
Lucas de Souza 2 년 전
부모
커밋
3f1b28f83c
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      js/ast/ivprogParser.js

+ 1 - 0
js/ast/ivprogParser.js

@@ -1520,6 +1520,7 @@ export class IVProgParser {
   parseParenthesisExp () {
     this.checkOpenParenthesis();
     const tokenA = this.getToken();
+    this.pos += 1;
     this.consumeNewLines();
     const exp = this.parseExpressionOR();
     this.consumeNewLines();