Lichen

tests/global_names.py

203:e28858d7f9d5
2016-11-21 Paul Boddie Added alias serialisation in order to preserve origin information for imported instances in the cached data.
     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 print result