Skip to main content

luaur_analysis/methods/
nearest_statement_finder_nearest_statement_finder.rs

1use crate::records::nearest_statement_finder::NearestStatementFinder;
2use luaur_ast::records::position::Position;
3
4impl NearestStatementFinder {
5    pub fn nearest_statement_finder_nearest_statement_finder(&mut self, cursor_position: Position) {
6        self.cursor = cursor_position;
7    }
8}