Lichen

tests/methods_attr_init.py

1036:e8ff2a117367
5 months ago Paul Boddie Fixed accessor temporary storage reservation for lambdas and eliminated redundant temporary storage reservation in attribute accesses.
     1 class C:     2     def __init__(.x, .y, .z): # no explicit self, attributes initialised     3         pass     4      5     def c():     6         return self.x     7      8 class D(C):     9     def d():    10         return self.y    11     12 class E(D):    13     def c():    14         return self.z    15     16 c = C(1, 2, 3)    17 d = D(1, 2, 3)    18 e = E(1, 2, 3)    19     20 print c.c() # 1    21 print d.c() # 1    22 print e.c() # 3    23 print d.d() # 2    24 print e.d() # 2