odoo-lsp 0.6.0

Language server for Odoo Python/JS/XML
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// #![warn(clippy::cognitive_complexity)]
#![deny(clippy::unused_async)]
#![deny(clippy::await_holding_invalid_type)]

pub mod config;
pub mod index;
pub mod str;
pub mod utils;
pub use str::ImStr;

pub mod analyze;
pub mod component;
pub mod model;
pub mod record;
pub mod template;

pub(crate) mod test_utils;