Skip to main content

blues_lsp/syntax/
mod.rs

1use arcstr::Substr;
2use location::Pos;
3
4pub mod buildctx;
5pub mod cst;
6pub mod diagnostic;
7pub mod lexer;
8pub mod location;
9pub mod parser;
10pub mod preprocessor;
11pub mod streams;
12
13mod util;
14
15#[derive(Debug, Clone)]
16pub struct TextChunk {
17    pub pos: Pos,
18    pub text: Substr,
19}