-
Notifications
You must be signed in to change notification settings - Fork 38
Improve Java code output for string literals concatenated with '&' #731
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
yutaro-sakamoto
merged 14 commits into
opensourcecobol:develop
from
kio-watanabe:improve-sql
Oct 24, 2025
Merged
Changes from 12 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
80ad2b2
feat: improve output strings concatenated with &
kio-watanabe 1455b17
fix: Minor bug fix
kio-watanabe a9dc37f
fix: Minor bug fix
kio-watanabe 1507c5b
fix: bugfix for memory access error
kio-watanabe a2db4c1
fix: remove unneccessary code
kio-watanabe 5b59277
style: minor refactoring
kio-watanabe 81b1739
test add a test
kio-watanabe 555333c
test: add a test
kio-watanabe c5f2199
style: format
kio-watanabe d0af466
test: minor fix for added test
kio-watanabe d0e6aa6
refactor: minor refactor for handling &-concatinated strings
kio-watanabe fbab533
fix: fix warning of a test script for &-concatenated strings
kio-watanabe 721e8e4
refactor: minor refactoring for &-concatenated strings
kio-watanabe 1ed9330
refactor: minor refactoring for &-concatenated strings
kio-watanabe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,40 @@ | ||
| AT_SETUP([convert '&' concatenated strings to Java]) | ||
|
|
||
| AT_DATA([prog.cbl], [ | ||
| IDENTIFICATION DIVISION. | ||
| PROGRAM-ID. prog. | ||
| DATA DIVISION. | ||
| WORKING-STORAGE SECTION. | ||
| 01 X-CONCAT PIC X(25) VALUE "abcde" | ||
| & "fghij" | ||
| & "klmno" | ||
| & "pqrst" | ||
| & "uvwxy". | ||
| 01 N-CONCAT PIC N(25) VALUE "����������" | ||
| & "����������" | ||
| & "����������" | ||
| & "������" | ||
| & "�Ȃɂʂ˂�". | ||
| PROCEDURE DIVISION. | ||
| MAIN-RTN. | ||
| DISPLAY X-CONCAT. | ||
| DISPLAY N-CONCAT. | ||
| STOP RUN. | ||
| ]) | ||
|
|
||
| AT_CHECK([${COMPILE} prog.cbl]) | ||
| AT_CHECK([java prog], [0], | ||
| [abcdefghijklmnopqrstuvwxy | ||
| �����������������������������������ĂƂȂɂʂ˂� | ||
| ]) | ||
| AT_CHECK([grep -q ' "abcde" +' prog.java]) | ||
| AT_CHECK([grep -q ' "fghij" +' prog.java]) | ||
| AT_CHECK([grep -q ' "klmno" +' prog.java]) | ||
| AT_CHECK([grep -q ' "pqrst" +' prog.java]) | ||
| AT_CHECK([grep -q ' "uvwxy"' prog.java]) | ||
| AT_CHECK([grep -q ' "����������" +' prog.java]) | ||
| AT_CHECK([grep -q ' "����������" +' prog.java]) | ||
| AT_CHECK([grep -q ' "����������" +' prog.java]) | ||
| AT_CHECK([grep -q ' "������" +' prog.java]) | ||
| AT_CHECK([grep -q ' "�Ȃɂʂ˂�"' prog.java]) | ||
| AT_CLEANUP |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.