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 document_symbols;
8pub mod expand_selection;
9pub mod find_references;
10mod generated;
11pub mod goto_definition;
12pub mod hover;
13mod infer;
14pub mod inlay_hints;
15mod offsets;
16mod quote;
17mod resolve;
18mod scope;
19mod symbols;
20#[cfg(test)]
21pub mod test_utils;
22mod tokens;