luaur-compiler 0.1.3

Luau source-to-bytecode compiler (Rust).
Documentation
1
2
3
4
5
6
7
8
use crate::records::function_visitor::FunctionVisitor;
use luaur_ast::records::ast_stat_type_function::AstStatTypeFunction;

impl<'a> FunctionVisitor<'a> {
    pub fn visit_ast_stat_type_function(&mut self, _node: *mut AstStatTypeFunction) -> bool {
        false
    }
}