luaur-analysis 0.1.2

Luau type checker and type inference (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::records::lint_multi_line_statement::LintMultiLineStatement;

use luaur_ast::records::ast_stat_repeat::AstStatRepeat;

use core::ffi::c_void;

impl LintMultiLineStatement {
    pub fn visit_ast_stat_repeat(&mut self, node: *mut AstStatRepeat) -> bool {
        let node_body = unsafe { (*node).body };
        self.visit_ast_stat_block(node_body);
        let _ = unsafe { node as *mut c_void };
        false
    }
}