Lichen

tests/assign_sequence.py

67:e5d076d40c1a
2016-09-28 Paul Boddie Expanded the access plan generation substantially. Renamed reference_constrained to accessor_constrained in the deducer. Renamed test_for_types to test_for_type, changing the parameter requirements.
     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