| 27 | } |
| 28 | |
| 29 | std::size_t LuaSyntaxNode::GetStartCol(const LuaSyntaxTree &t) const { |
| 30 | return t.GetFile().GetColumn(t.GetStartOffset(_index)); |
| 31 | } |
| 32 | |
| 33 | std::size_t LuaSyntaxNode::GetEndLine(const LuaSyntaxTree &t) const { |
| 34 | return t.GetFile().GetLine(t.GetEndOffset(_index)); |
no test coverage detected