luaur-reduce-cli 0.1.3

Command-line Luau test-case reducer (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
use luaur_ast::records::ast_stat_block::AstStatBlock;

use crate::records::enqueuer::Enqueuer;

pub fn enqueuer_visit(this: &mut Enqueuer, block: *mut AstStatBlock) -> bool {
    unsafe {
        (*this.queue).push_back(block);
    }
    false
}