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;
12pub mod inlay_hints;
13mod offsets;
14mod quote;
15mod resolve;
16mod scope;
17mod symbols;
18#[cfg(test)]
19pub mod test_utils;
20mod tokens;