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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
|
discard """
action: compile
"""
import tables
{.experimental: "strictNotNil".}
type
Nilable* = ref object
a*: int
field*: Nilable
NonNilable* = Nilable not nil
Nilable2* = nil NonNilable
# proc `[]`(a: Nilable, b: int): Nilable =
# nil
# Nilable tests
# test deref
proc testDeref(a: Nilable) =
echo a.a > 0 #[tt.Warning
^ can't deref a, it might be nil
]#
# # # test if else
proc testIfElse(a: Nilable) =
if a.isNil:
echo a.a #[tt.Warning
^ can't deref a, it is nil
]#
else:
echo a.a # ok
proc testIfNoElse(a: Nilable) =
if a.isNil:
echo a.a #[tt.Warning
^ can't deref a, it is nil
]#
echo a.a #[tt.Warning
^ can't deref a, it might be nil
]#
proc testIfReturn(a: Nilable) =
if not a.isNil:
return
echo a.a #[tt.Warning
^ can't deref a, it is nil
]#
proc testIfBreak(a: seq[Nilable]) =
for b in a:
if not b.isNil:
break
echo b.a #[tt.Warning
^ can't deref b, it is nil
]#
proc testIfContinue(a: seq[Nilable]) =
for b in a:
if not b.isNil:
continue
echo b.a #[tt.Warning
^ can't deref b, it is nil
]#
proc testIfRaise(a: Nilable) =
if not a.isNil:
raise newException(ValueError, "")
echo a.a #[tt.Warning
^ can't deref a, it is nil
]#
proc testIfElif(a: Nilable) =
var c = 0
if c == 0:
echo a.a #[tt.Warning
^ can't deref a, it might be nil
]#
elif c == 1:
echo a.a #[tt.Warning
^ can't deref a, it might be nil
]#
elif not a.isNil:
echo a.a # ok
elif c == 2:
echo 0
else:
echo a.a #[tt.Warning
^ can't deref a, it is nil
]#
proc testAssignUnify(a: Nilable, b: int) =
var a2 = a
if b == 0:
a2 = Nilable()
echo a2.a #[tt.Warning
^ can't deref a2, it might be nil
]#
# # test assign in branch and unifiying that with the main block after end of branch
proc testAssignUnifyNil(a: Nilable, b: int) =
var a2 = a
if b == 0:
a2 = nil
echo a2.a #[tt.Warning
^ can't deref a2, it might be nil
]#
# test loop
proc testForLoop(a: Nilable) =
var b = Nilable()
for i in 0 .. 5:
echo b.a #[tt.Warning
^ can't deref b, it might be nil
]#
if i == 2:
b = a
echo b.a #[tt.Warning
^ can't deref b, it might be nil
]#
# # TODO implement this after discussion
# # proc testResultCompoundNonNilableElement(a: Nilable): (NonNilable, NonNilable) = #[t t.Warning
# # ^ result might be not initialized, so it or an element might be nil
# # ]#
# # if not a.isNil:
# # result[0] = a #[t t.Warning
# # ^ can't assign nilable to non nilable: it might be nil
# # #]
# # proc testNonNilDeref(a: NonNilable) =
# # echo a.a # ok
# # # not only calls: we can use partitions for dependencies for field aliases
# # # so we can detect on change what does this affect or was this mutated between us and the original field
# # proc testRootAliasField(a: Nilable) =
# # var aliasA = a
# # if not a.isNil and not a.field.isNil:
# # aliasA.field = nil
# # # a.field = nil
# # # aliasA = nil
# # echo a.field.a # [tt.Warning
# # ^ can't deref a.field, it might be nil
# # ]#
proc testAliasChanging(a: Nilable) =
var b = a
var aliasA = b
b = Nilable()
if not b.isNil:
echo aliasA.a #[tt.Warning
^ can't deref aliasA, it might be nil
]#
# # TODO
# # proc testAliasUnion(a: Nilable) =
# # var a2 = a
# # var b = a2
# # if a.isNil:
# # b = Nilable()
# # a2 = nil
# # else:
# # a2 = Nilable()
# # b = a2
# # if not b.isNil:
# # echo a2.a #[ tt.Warning
# # ^ can't deref a2, it might be nil
# # ]#
# # TODO after alias support
# #proc callVar(a: var Nilable) =
# # a.field = nil
# # TODO ptr support
# # proc testPtrAlias(a: Nilable) =
# # # pointer to a: hm.
# # # alias to a?
# # var ptrA = a.addr # {0, 1}
# # if not a.isNil: # {0, 1}
# # ptrA[] = nil # {0, 1} 0: MaybeNil 1: MaybeNil
# # echo a.a #[ tt.Warning
# # ^ can't deref a, it might be nil
# # ]#
# # TODO field stuff
# # currently it just doesnt support dot, so accidentally it shows a warning but because that
# # not alias i think
# # proc testFieldAlias(a: Nilable) =
# # var b = a # {0, 1} {2}
# # if not a.isNil and not a.field.isNil: # {0, 1} {2}
# # callVar(b) # {0, 1} {2} 0: Safe 1: Safe
# # echo a.field.a #[ tt.Warning
# # ^ can't deref a.field, it might be nil
# # ]#
# #
# # proc testUniqueHashTree(a: Nilable): Nilable =
# # # TODO what would be a clash
# # var field = 0
# # if not a.isNil and not a.field.isNil:
# # # echo a.field.a
# # echo a[field].a
# # result = Nilable()
# # proc testSeparateShadowingResult(a: Nilable): Nilable =
# # result = Nilable()
# # if not a.isNil:
# # var result: Nilable = nil
# # echo result.a
proc testCStringDeref(a: cstring) =
echo a[0] #[tt.Warning
^ can't deref a, it might be nil
]#
proc testNilablePtr(a: ptr int) =
if not a.isNil:
echo a[] # ok
echo a[] #[tt.Warning
^ can't deref a, it might be nil
]#
# # proc testNonNilPtr(a: ptr int not nil) =
# # echo a[] # ok
proc raiseCall: NonNilable = #[tt.Warning
^ return value is nil
]#
raise newException(ValueError, "raise for test")
# proc testTryCatch(a: Nilable) =
# var other = a
# try:
# other = raiseCall()
# except:
# discard
# echo other.a #[ tt.Warning
# ^ can't deref other, it might be nil
# ]#
# # proc testTryCatchDetectNoRaise(a: Nilable) =
# # var other = Nilable()
# # try:
# # other = nil
# # other = a
# # other = Nilable()
# # except:
# # other = nil
# # echo other.a # ok
# # proc testTryCatchDetectFinally =
# # var other = Nilable()
# # try:
# # other = nil
# # other = Nilable()
# # except:
# # other = Nilable()
# # finally:
# # other = nil
# # echo other.a # can't deref other: it is nil
# # proc testTryCatchDetectNilableWithRaise(b: bool) =
# # var other = Nilable()
# # try:
# # if b:
# # other = nil
# # else:
# # other = Nilable()
# # var other2 = raiseCall()
# # except:
# # echo other.a # ok
# # echo other.a # can't deref a: it might be nil
# # proc testRaise(a: Nilable) =
# # if a.isNil:
# # raise newException(ValueError, "a == nil")
# # echo a.a # ok
# # proc testBlockScope(a: Nilable) =
# # var other = a
# # block:
# # var other = Nilable()
# # echo other.a # ok
# # echo other.a # can't deref other: it might be nil
# # ok we can't really get the nil value from here, so should be ok
# # proc testDirectRaiseCall: NonNilable =
# # var a = raiseCall()
# # result = NonNilable()
# # proc testStmtList =
# # var a = Nilable()
# # block:
# # a = nil
# # a = Nilable()
# # echo a.a # ok
proc callChange(a: Nilable) =
if not a.isNil:
a.field = nil
proc testCallChangeField =
var a = Nilable()
a.field = Nilable()
callChange(a)
echo a.field.a #[ tt.Warning
^ can't deref a.field, it might be nil
]#
proc testReassignVarWithField =
var a = Nilable()
a.field = Nilable()
echo a.field.a # ok
a = Nilable()
echo a.field.a #[ tt.Warning
^ can't deref a.field, it might be nil
]#
proc testItemDeref(a: var seq[Nilable]) =
echo a[0].a #[tt.Warning
^ can't deref a[0], it might be nil
]#
a[0] = Nilable() # good: now .. if we dont track, how do we know
echo a[0].a # ok
echo a[1].a #[tt.Warning
^ can't deref a[1], it might be nil
]#
var b = 1
if a[b].isNil:
echo a[1].a #[tt.Warning
^ can't deref a[1], it might be nil
]#
var c = 0
echo a[c].a #[tt.Warning
^ can't deref a[c], it might be nil
]#
# known false positive
if not a[b].isNil:
echo a[b].a #[tt.Warning
^ can't deref a[b], it might be nil
]#
const c = 0
if a[c].isNil:
echo a[0].a #[tt.Warning
^ can't deref a[0], it is nil
]#
a[c] = Nilable()
echo a[0].a # ok
# # # proc test10(a: Nilable) =
# # # if not a.isNil and not a.b.isNil:
# # # c_memset(globalA.addr, 0, globalA.sizeOf.csize_t)
# # # globalA = nil
# # # echo a.a # can't deref a: it might be nil
|