You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Failed to parse file.groovy at cursor position 0. The next 10 characters in the original source are `def (a, b)`
Pointers
There is no implementation yet. In the GroovyParserVisitor you can see this:
if (expression.isMultipleAssignmentDeclaration()) {
// def (a, b) = [1, 2]thrownewUnsupportedOperationException("Parsing multiple assignment (e.g.: def (a, b) = [1, 2]) is not implemented");
}
The text was updated successfully, but these errors were encountered:
What is the smallest, simplest way to reproduce the problem?
What did you expect to see?
Working tests
What did you see instead?
Pointers
There is no implementation yet. In the
GroovyParserVisitor
you can see this:The text was updated successfully, but these errors were encountered: