datex_core/compiler/precompiler/
options.rs

1#[derive(Debug, Clone, Default)]
2pub struct PrecompilerOptions {
3    /// If enabled, all collected errors as well as the RichAst
4    /// are returned if one or multiple errors occurred.
5    /// Otherwise, only the first error is returned (fast failing)
6    pub detailed_errors: bool,
7}