Lichen

tests/consts.py

96:2219668ae7d9
2016-10-14 Paul Boddie Introduced access mode information for unambiguously-traversed attributes so that the appropriate instruction can be generated. Removed the generation of augmented attribute access plans and the computation of general attribute position ambiguity, since the information will not be used: in cases where ambiguity might need to be determined, attributes must be checked to determine their exact nature even if unambiguous.
     1 def f():     2     s = "test"     3     m = s.__len__     4     n = "test".__len__     5      6 def g():     7     l = [1]     8     m = l.__len__     9     n = [1].__len__    10     11 f()    12 g()