| 31 | } |
| 32 | |
| 33 | std::size_t LuaSyntaxNode::GetEndLine(const LuaSyntaxTree &t) const { |
| 34 | return t.GetFile().GetLine(t.GetEndOffset(_index)); |
| 35 | } |
| 36 | |
| 37 | std::size_t LuaSyntaxNode::GetEndCol(const LuaSyntaxTree &t) const { |
| 38 | return t.GetFile().GetColumn(t.GetEndOffset(_index)); |
no test coverage detected