micropython

tests/class_attr_ref_to_class.py

438:b547786f38c7
2011-07-02 Paul Boddie Moved some code generation methods into a new Assembler class. Separated sequence element storage into a separate method which may form the basis of a native library routine.
     1 #!/usr/bin/env python     2      3 class A:     4     pass     5      6 class B:     7     x = A     8      9 class C:    10     x = A    11     12 class D:    13     x = type    14     15 result_3 = C.x is A and 3 or 0    16 result_4 = D.x is type and 4 or 0    17     18 # vim: tabstop=4 expandtab shiftwidth=4