We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f726125 commit 7491b5eCopy full SHA for 7491b5e
javascript/extractor/src/com/semmle/jcorn/Parser.java
@@ -1699,6 +1699,12 @@ protected ParenthesisedExpressions parseParenthesisedExpressions(DestructuringEr
1699
return parenExprs;
1700
}
1701
1702
+ /**
1703
+ * Parse an expression that forms part of a comma-separated list of expressions between parentheses, adding
1704
+ * it to `parenExprs`.
1705
+ *
1706
+ * @return true if more expressions may follow this one, false if it must be the last one
1707
+ */
1708
protected boolean parseParenthesisedExpression(DestructuringErrors refDestructuringErrors,
1709
boolean allowTrailingComma, ParenthesisedExpressions parenExprs, boolean first) {
1710
if (allowTrailingComma && this.afterTrailingComma(TokenType.parenR, true)) {
0 commit comments