Issue Details (XML | Word | Printable)

Key: CLOV-200
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Brendan Humphreys [Atlassian]
Reporter: Slawek Ginter [Atlassian]
Votes: 0
Watchers: 0
Operations

Add/Edit UI Mockup to this issue
If you were logged in you would be able to see more operations.
Clover

Case statements in a switch have the startColumn > endColumn

Created: 21/Mar/08 11:14 AM   Updated: 02/Jul/08 01:05 AM
Component/s: Instrumentation
Affects Version/s: None
Fix Version/s: 2.3.2

Time Tracking:
Not Specified

Environment: Head version of clover2 used for idea7 plugin

Participants: Brendan Humphreys [Atlassian] and Slawek Ginter [Atlassian]
Since last comment: 36 weeks, 3 days ago
Resolution Date: 02/Jul/08 12:39 AM
Labels:


 Description  « Hide
endColumn is always 1 for me

test class:

public class NotNested {
    public static void main(String[] args) {
        System.out.println("NotNested.main");
        int x = 7;
        int y;
        switch(x) {
            case 1: y =1;break;
            case 2: y =1;break;
            case 3: y =1;break;
        }
    }
}


 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Slawek Ginter [Atlassian] added a comment - 21/Mar/08 11:27 AM
previous description made no sense