mirror of
https://github.com/casey/just.git
synced 2024-11-23 11:04:09 +03:00
9731278d2a
I think 70 is too agressive, especially since it includes indentation when determining line length.
17 lines
656 B
Rust
17 lines
656 B
Rust
use crate::common::*;
|
|
|
|
/// A module, the top-level type produced by the parser. So-named because
|
|
/// although at present, all justfiles consist of a single module, in the future
|
|
/// we will likely have multi-module and multi-file justfiles.
|
|
///
|
|
/// Not all successful parses result in valid justfiles, so additional
|
|
/// consistency checks and name resolution are performed by the `Analyzer`,
|
|
/// which produces a `Justfile` from a `Module`.
|
|
#[derive(Debug)]
|
|
pub(crate) struct Module<'src> {
|
|
/// Items in the justfile
|
|
pub(crate) items: Vec<Item<'src>>,
|
|
/// Non-fatal warnings encountered during parsing
|
|
pub(crate) warnings: Vec<Warning<'src>>,
|
|
}
|