Add missing token stream position increment in expression with parenthesis parser
@@ -1520,6 +1520,7 @@ export class IVProgParser {
parseParenthesisExp () {
this.checkOpenParenthesis();
const tokenA = this.getToken();
+ this.pos += 1;
this.consumeNewLines();
const exp = this.parseExpressionOR();