Skip to main content

squawk_ide/
lib.rs

1mod binder;
2pub mod builtins;
3mod classify;
4pub mod code_actions;
5pub mod column_name;
6pub mod completion;
7pub mod db;
8pub mod document_symbols;
9pub mod expand_selection;
10pub mod find_references;
11pub mod folding_ranges;
12mod generated;
13pub mod goto_definition;
14pub mod hover;
15mod infer;
16pub mod inlay_hints;
17mod offsets;
18mod quote;
19mod resolve;
20mod scope;
21pub mod semantic_tokens;
22mod symbols;
23#[cfg(test)]
24pub mod test_utils;
25mod tokens;