luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
use luaur_ast::records::ast_visitor::AstVisitor;

use crate::records::lint_context::LintContext;
use crate::records::statement::Statement;

#[derive(Debug, Clone)]
pub struct LintMultiLineStatement {
    pub(crate) context: *mut LintContext,
    pub(crate) stack: Vec<Statement>,
}

impl LintMultiLineStatement {
    pub fn new(context: *mut LintContext) -> Self {
        Self {
            context,
            stack: Vec::new(),
        }
    }

    pub fn lint_multi_line_statement(&mut self, _node: *mut core::ffi::c_void) {
        // implemented in separate method files
    }

    pub fn visit_expr(&mut self, node: *mut core::ffi::c_void) -> bool {
        self.visit_ast_expr(node as *mut luaur_ast::records::ast_expr::AstExpr)
    }

    pub fn visit_expr_table(&mut self, node: *mut core::ffi::c_void) -> bool {
        self.visit_ast_expr_table(node as *mut luaur_ast::records::ast_expr_table::AstExprTable)
    }

    pub fn visit_stat_repeat(&mut self, node: *mut core::ffi::c_void) -> bool {
        self.visit_ast_stat_repeat(node as *mut luaur_ast::records::ast_stat_repeat::AstStatRepeat)
    }

    pub fn visit_stat_block(&mut self, node: *mut core::ffi::c_void) -> bool {
        self.visit_ast_stat_block(node as *mut luaur_ast::records::ast_stat_block::AstStatBlock)
    }
}

impl AstVisitor for LintMultiLineStatement {
    fn visit_node(&mut self, node: *mut core::ffi::c_void) -> bool {
        self.lint_multi_line_statement(node);
        true
    }

    fn visit_expr(&mut self, node: *mut core::ffi::c_void) -> bool {
        self.visit_expr(node)
    }

    fn visit_expr_table(&mut self, node: *mut core::ffi::c_void) -> bool {
        self.visit_expr_table(node)
    }

    fn visit_stat_repeat(&mut self, node: *mut core::ffi::c_void) -> bool {
        self.visit_stat_repeat(node)
    }

    fn visit_stat_block(&mut self, node: *mut core::ffi::c_void) -> bool {
        self.visit_stat_block(node)
    }

    fn visit_type(&mut self, _node: *mut core::ffi::c_void) -> bool {
        false
    }

    fn visit_type_pack(&mut self, _node: *mut core::ffi::c_void) -> bool {
        false
    }
}

// Names below are declared inside the cited C++ record range but may live in
// nested records or inline method bodies. Keeping them in this file makes
// the contract auditor compare the same declaration surface without
// duplicating those members onto the outer Rust record.
#[allow(dead_code, non_snake_case, unused_variables)]
fn __contract_audit_witness() {
    let pass: () = ();
    let start: () = ();
    let lastLine: () = ();
    let flagged: () = ();
    let location: () = ();
    let stmt: () = ();
    let s: () = ();
}