aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-symbol-solver-testing/src/test/resources/LocalVariableInParent.java.txt
blob: 066ab16f936e299be8d62cb62575abbcf16e0d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import java.util.List;

class Node {
}

class Comment {
}

class LocalVariableInParent {

    void foo1() {
       for (Node child : null){
            String s;
            for (Object c : null){
                if (true){
                    s;
                }
            }
        }
    }

    void foo3() {
       for (Node child : null){
            String s;
            for (Object c : null){
                s;
            }
        }
    }

    void foo2() {
       for (Node child : null){
            String s;
            s;
        }
    }

    void foo4() {
        List<Node> children = node.getChildrenNodes();
        for (Node child : children){
            List<Comment> commentsInsideChild = new LinkedList<Comment>();
            for (Comment c : commentsToAttribute){
                if (true){
                    commentsInsideChild.add(c);
                }
            }
        }
    }

    void foo5() {
        List<Comment> commentsInsideChild;
        Comment c;
        commentsInsideChild.add(c);
    }


}