-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into report-viewer/ench…
…ance-table # Conflicts: # report-viewer/src/views/ClusterView.vue
- Loading branch information
Showing
127 changed files
with
24,786 additions
and
1,428 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
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
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
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
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
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
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
31 changes: 31 additions & 0 deletions
31
core/src/test/resources/de/jplag/samples/NewJavaFeatures/A/Java21.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,31 @@ | ||
public class Java21 { | ||
private static final record Circle(int radius) { | ||
} | ||
|
||
private static final record Rect(int width, int height) { | ||
} | ||
|
||
private static final record Both(Circle circle, Rect rect) { | ||
} | ||
|
||
private static final record Square(int length) { | ||
} | ||
|
||
public void main() { | ||
Shape s = new Circle(); | ||
switch (s) { | ||
case Cricle(int r) -> System.out.println(r); | ||
case Shape s -> System.out.println(c); | ||
case Both(Circle c, Rect(int w, int _)) -> System.out.println("something"); | ||
case Square -> { | ||
int l = ((Square) s).length; | ||
System.out.println(STR."Square with length \{Math.abs(l)}"); | ||
} | ||
} | ||
|
||
|
||
if (s instanceof Circle(int r)) { | ||
|
||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
core/src/test/resources/de/jplag/samples/NewJavaFeatures/B/Java21.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,31 @@ | ||
public class Java21 { | ||
private static final record Circle(int radius) { | ||
} | ||
|
||
private static final record Rect(int width, int height) { | ||
} | ||
|
||
private static final record Both(Circle circle, Rect rect) { | ||
} | ||
|
||
private static final record Square(int length) { | ||
} | ||
|
||
public void main() { | ||
Shape s = new Circle(); | ||
switch (s) { | ||
case Cricle(int r) -> System.out.println(r); | ||
case Shape s -> System.out.println(c); | ||
case Both(Circle c, Rect(int _, int w)) -> System.out.println("something"); | ||
case Square -> { | ||
int l = ((Square) s).length; | ||
System.out.println(STR."Square with length \{Math.abs(l)}"); | ||
} | ||
} | ||
|
||
|
||
if (s instanceof Circle(int r)) { | ||
|
||
} | ||
} | ||
} |
Oops, something went wrong.