| 915 | void PrintRows() const { PrintRowRange(*rows, row_start, row_end); } |
| 916 | |
| 917 | void Fail(int min_debug_level, const char *why) const { |
| 918 | if (debug_level < min_debug_level) return; |
| 919 | tprintf("# %s\n", why); |
| 920 | PrintRows(); |
| 921 | } |
| 922 | |
| 923 | ParagraphModel Model() const { |
| 924 | return ParagraphModel(just, margin, first_indent, body_indent, tolerance); |
no outgoing calls
no test coverage detected