| 192 | } |
| 193 | |
| 194 | const Ref<TextParagraph> TextEdit::Text::get_line_data(int p_line) const { |
| 195 | ERR_FAIL_INDEX_V(p_line, text.size(), Ref<TextParagraph>()); |
| 196 | return text[p_line].data_buf; |
| 197 | } |
| 198 | |
| 199 | float TextEdit::Text::get_indent_offset(int p_line, bool p_rtl) const { |
| 200 | ERR_FAIL_INDEX_V(p_line, text.size(), 0); |
no test coverage detected