Lichen

tests/global_names.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 class C:     2     x = 3     3      4 def f():     5     x = g.x     6     y = g     7     return y.x     8      9 g = C    10 result = f()    11 assert result == 3