-
Bug
-
Resolution: Fixed
-
P4
-
9
-
b147
-
Verified
SourceCodeAnalysis splits code with array declaration incorrectly.
Example:
int[] m = {1, 2}, n = new int[0];
int i;
SourceCodeAnalysis is expected to split these two lines, but it does not. If "{1, 2}" is replaced with "new int..." or removed, the code is split as expected.
------
Also handle, as incomplete:
int m = 0,
Map<String,
Example:
int[] m = {1, 2}, n = new int[0];
int i;
SourceCodeAnalysis is expected to split these two lines, but it does not. If "{1, 2}" is replaced with "new int..." or removed, the code is split as expected.
------
Also handle, as incomplete:
int m = 0,
Map<String,