| 23 | } |
| 24 | |
| 25 | std::size_t LuaSyntaxNode::GetStartLine(const LuaSyntaxTree &t) const { |
| 26 | return t.GetFile().GetLine(t.GetStartOffset(_index)); |
| 27 | } |
| 28 | |
| 29 | std::size_t LuaSyntaxNode::GetStartCol(const LuaSyntaxTree &t) const { |
| 30 | return t.GetFile().GetColumn(t.GetStartOffset(_index)); |
no test coverage detected