(self)
| 1334 | |
| 1335 | @property |
| 1336 | def document_type(self): |
| 1337 | if isinstance(self.document_type_obj, str): |
| 1338 | if self.document_type_obj == RECURSIVE_REFERENCE_CONSTANT: |
| 1339 | self.document_type_obj = self.owner_document |
| 1340 | else: |
| 1341 | self.document_type_obj = get_document(self.document_type_obj) |
| 1342 | return self.document_type_obj |
| 1343 | |
| 1344 | @staticmethod |
| 1345 | def _lazy_load_ref(ref_cls, dbref): |
nothing calls this directly
no test coverage detected