(children, options)
| 587 | }; |
| 588 | |
| 589 | function Document(children, options) { |
| 590 | options = options || {}; |
| 591 | return { |
| 592 | type: types.document, |
| 593 | children: children, |
| 594 | notes: options.notes || new Notes({}), |
| 595 | comments: options.comments || [] |
| 596 | }; |
| 597 | } |
| 598 | |
| 599 | function Paragraph(children, properties) { |
| 600 | properties = properties || {}; |
nothing calls this directly
no outgoing calls
no test coverage detected