luaur_analysis/methods/nearest_likely_block_finder_nearest_likely_block_finder.rs
1use crate::records::nearest_likely_block_finder::NearestLikelyBlockFinder;
2use luaur_ast::records::ast_stat_block::AstStatBlock;
3
4impl NearestLikelyBlockFinder {
5 pub fn nearest_likely_block_finder_nearest_likely_block_finder(
6 stmt_block_recent_ast: *mut AstStatBlock,
7 ) -> Self {
8 NearestLikelyBlockFinder::nearest_likely_block_finder(stmt_block_recent_ast)
9 }
10}