arity 0.2.0

An LSP, formatter, and linter for R
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub(crate) mod bracket_balancer;
pub(crate) mod context;
pub mod core;
pub(crate) mod cursor;
pub(crate) mod diagnostics;
pub(crate) mod events;
pub(crate) mod expr;
pub(crate) mod lexer;
pub(crate) mod recovery;
pub mod reparse;
pub(crate) mod structural;
pub(crate) mod tree_builder;

pub use core::{ParseDiagnostic, ParseOutput, parse, reconstruct};
pub use reparse::{
    Edit, ReparseKind, Reparsed, diff_edit, map_range_through_edit, map_range_through_edits,
    reparse,
};