()
| 870 | # Load field offset information from objects-inl.h etc. |
| 871 | # |
| 872 | def load_fields(): |
| 873 | for filename in sys.argv[2:]: |
| 874 | if filename.endswith("-inl.h"): |
| 875 | load_fields_from_file(filename) |
| 876 | |
| 877 | for body in extras_accessors: |
| 878 | fields.append(parse_field('ACCESSORS(%s)' % body)); |
| 879 | |
| 880 | |
| 881 | def load_fields_from_file(filename): |
no test coverage detected