()
| 230 | } |
| 231 | |
| 232 | getTextWithoutBlockBreak() { |
| 233 | if (textEndsInBlockBreak(this.text)) { |
| 234 | return this.text.getTextAtRange([ 0, this.getBlockBreakPosition() ]) |
| 235 | } else { |
| 236 | return this.text.copy() |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | // Grouping |
| 241 |
no test coverage detected