parol-ls 4.4.0

Language server for parol parser generator
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod format;
pub(crate) use format::Format;

mod indent;

mod fmt_options;
pub(crate) use fmt_options::{FmtOptions, LineEnd};

mod settings;
pub(crate) use settings::FormattingSettings;

mod line;
pub(crate) use line::Line;

mod comments;
pub(crate) use comments::Comments;

mod context;