| 119 | } |
| 120 | |
| 121 | STRING RtlEmbed(const STRING &word, bool rtlify) { |
| 122 | if (rtlify) |
| 123 | return STRING(kRLE) + word + STRING(kPDF); |
| 124 | return word; |
| 125 | } |
| 126 | |
| 127 | // Print the current thoughts of the paragraph detector. |
| 128 | static void PrintDetectorState(const ParagraphTheory &theory, |
no test coverage detected