Lichen

tests/assign_sequence.py

102:7de3090fed03
2016-10-15 Paul Boddie Refined accessor and provider computation in order to provide context testing information. Record access plan cases where any context will be ignored.
     1 def f():     2     l = [1, 2, 3]     3     x = l     4     a, b, c = l     5     d, e, f = [1, 2, 3]     6      7 def g(x):     8     l = [1, 2, 3]     9     m = [4, l, 6]    10     if x:    11         n = l    12     else:    13         n = m    14     15 l = [1, 2, 3]    16 x = l    17 a, b, c = l    18 d, e, f = [1, 2, 3]    19 m = [4, l, 6]    20 if x:    21     n = l    22 else:    23     n = m