treereduce-lua 0.4.1

Fast, parallel, syntax-aware program reducer for Lua
1
2
3
4
5
6
7
8
9
10
11
use std::collections::HashMap;

use anyhow::Result;

fn main() -> Result<()> {
    treereduce::cli::main(
        tree_sitter_lua::LANGUAGE.into(),
        tree_sitter_lua::NODE_TYPES,
        HashMap::new(),
    )
}