(children, properties)
| 597 | } |
| 598 | |
| 599 | function Paragraph(children, properties) { |
| 600 | properties = properties || {}; |
| 601 | var indent = properties.indent || {}; |
| 602 | return { |
| 603 | type: types.paragraph, |
| 604 | children: children, |
| 605 | styleId: properties.styleId || null, |
| 606 | styleName: properties.styleName || null, |
| 607 | numbering: properties.numbering || null, |
| 608 | alignment: properties.alignment || null, |
| 609 | indent: { |
| 610 | start: indent.start || null, |
| 611 | end: indent.end || null, |
| 612 | firstLine: indent.firstLine || null, |
| 613 | hanging: indent.hanging || null |
| 614 | } |
| 615 | }; |
| 616 | } |
| 617 | |
| 618 | function Run(children, properties) { |
| 619 | properties = properties || {}; |
nothing calls this directly
no outgoing calls
no test coverage detected