| 35 | } |
| 36 | |
| 37 | std::size_t LuaSyntaxNode::GetEndCol(const LuaSyntaxTree &t) const { |
| 38 | return t.GetFile().GetColumn(t.GetEndOffset(_index)); |
| 39 | } |
| 40 | |
| 41 | std::string_view LuaSyntaxNode::GetText(const LuaSyntaxTree &t) const { |
| 42 | return t.GetFile().Slice(GetTextRange(t)); |
no test coverage detected