squawk_ide/lib.rs
1mod binder;
2mod classify;
3pub mod code_actions;
4pub mod column_name;
5pub mod completion;
6pub mod document_symbols;
7pub mod expand_selection;
8pub mod find_references;
9mod generated;
10pub mod goto_definition;
11pub mod hover;
12mod infer;
13pub mod inlay_hints;
14mod offsets;
15mod quote;
16mod resolve;
17mod scope;
18mod symbols;
19#[cfg(test)]
20pub mod test_utils;
21mod tokens;