-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix groovy multivariable declaration (#4757)
* Fix parsing of multiple variable assignments in one statement * Minor improvement * Add another testcase and make sure it works * Simplify * Clarify * Revert formatting * Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Fixed * Fixed * Move tests to AssignmentTest + add `final def` case * Should have done it this way initially ;) * Add testcase for regression * Polish * Extra testcase * Add `noKeyword` test * Return String instead of passing StringBuilder Include subpart of remainder to give an indication where the issue occurred * Further convert to using String * Simplify * Different approach using marker * Remove unused code and FMT * Remove specific exception cases for VariableDeclarations * Change to startsWith with offset --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: lingenj <[email protected]> Co-authored-by: Tim te Beek <[email protected]>
- Loading branch information
1 parent
d449490
commit 5f2d11c
Showing
5 changed files
with
189 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
rewrite-groovy/src/main/java/org/openrewrite/groovy/marker/MultiVariable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright 2024 the original author or authors. | ||
* <p> | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* <p> | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.openrewrite.groovy.marker; | ||
|
||
import lombok.Value; | ||
import lombok.With; | ||
import org.openrewrite.java.tree.Space; | ||
import org.openrewrite.marker.Marker; | ||
|
||
import java.util.UUID; | ||
|
||
@Value | ||
@With | ||
public class MultiVariable implements Marker { | ||
UUID id; | ||
Space prefix; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters