(children, options)
| 742 | } |
| 743 | |
| 744 | function TableCell(children, options) { |
| 745 | options = options || {}; |
| 746 | return { |
| 747 | type: types.tableCell, |
| 748 | children: children, |
| 749 | colSpan: options.colSpan == null ? 1 : options.colSpan, |
| 750 | rowSpan: options.rowSpan == null ? 1 : options.rowSpan |
| 751 | }; |
| 752 | } |
| 753 | |
| 754 | function Break(breakType) { |
| 755 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected