1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use diagnostics::DatamodelError;
use parser_database::{ast::WithSpan, walkers::ModelWalker};

use crate::validate::validation_pipeline::context::Context;

pub(crate) fn view_definition_without_preview_flag(model: ModelWalker<'_>, ctx: &mut Context<'_>) {
    if ctx.preview_features.contains(crate::PreviewFeature::Views) {
        return;
    }

    if !model.ast_model().is_view() {
        return;
    }

    ctx.push_error(DatamodelError::new_validation_error(
        "View definitions are only available with the `views` preview feature.",
        model.ast_model().span(),
    ));
}