File: FlowField.java

package info (click to toggle)
checker-framework-java 3.2.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 23,104 kB
  • sloc: java: 145,916; xml: 839; sh: 518; makefile: 404; perl: 26
file content (76 lines) | stat: -rw-r--r-- 1,675 bytes parent folder | download | duplicates (3)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import org.checkerframework.checker.nullness.qual.*;

@org.checkerframework.framework.qual.DefaultQualifier(Nullable.class)
public class FlowField {

    public @Nullable String s = null;

    void test() {
        if (s != null) {
            s.startsWith("foo");
        }
    }

    static String field = "asdf";

    static {
        field = "asdf";
    }

    void testFields() {
        // :: error: (dereference.of.nullable)
        System.out.println(field.length());
    }

    // Fowrard reference to static finals
    void test1() {
        nonnull.toString();
    }

    static final String nonnull = new String();

    class A {
        protected String field = null;
    }

    class B extends A {
        void test() {
            assert field != null : "@AssumeAssertion(nullness)";
            field.length();
        }
    }

    static class BooleanWrapper {
        @Nullable Object b;
    }

    @Nullable BooleanWrapper bw;

    void testBitwise(@NonNull FlowField a, @NonNull FlowField b) {
        Object r;
        if (a.bw != null) {
            if (b.bw != null) {
                r = a.bw.b;
                r = b.bw.b;
            }
        }
        if (a.bw != null && b.bw != null) {
            r = a.bw.b;
            r = b.bw.b;
        }
    }

    void testInstanceOf(@NonNull FlowField a) {
        if (!(a.s instanceof String)) {
            return;
        }
        @NonNull String s = a.s;
    }

    void testTwoLevels(@NonNull FlowField a, BooleanWrapper bwArg) {
        // :: error: (dereference.of.nullable)
        if (!(a.bw.hashCode() == 0)) // warning here
        return;
        Object o = a.bw.b; // but not here
    }
}