Bug #9871
String followed by an alternative coding construct should emit a single character
Status:
Rejected
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
Due date:
% Done:
0%
billable:
No
vendor_id:
GCD
case_num:
version_reported:
version_resolved:
reviewer:
production:
No
env_name:
topics:
Related issues
History
#1 Updated by Stefan Vieru over 1 year ago
When converting/preprocessing the following code
// preprocesses to:
// func0("").
func0("";).
The expected output should be:
// preprocesses to:
// func0("").
func0("").
But actual:
// preprocesses to:
// func0("").
func0("";).
The alternative coding construct that it's following a string should only emit back the character
).#2 Updated by Stefan Vieru over 1 year ago
- Related to Support #6859: preprocessor tests added
#3 Updated by Stefan Vieru over 1 year ago
The modifications should be done somewhere here: com/goldencode/p2j/preproc/ClearStream.java:588
#4 Updated by Alexandru Lungu over 1 year ago
- Related to Bug #6308: post string literal alternative coding quirk in 4GL preprocessor added
#5 Updated by Alexandru Lungu over 1 year ago
- Status changed from New to Rejected
The work will continue on #6308.