| 341 | index = IntField() |
| 342 | |
| 343 | class SubDoc(EmbeddedDocument): |
| 344 | heading = ListField(StringField()) |
| 345 | text = EmbeddedDocumentListField(Word) |
| 346 | |
| 347 | class MainDoc(Document): |
| 348 | title = StringField() |
nothing calls this directly
no test coverage detected