blob: 4406d0510651d6ac68b7462010eb82fbd361cf46 (
plain) (
tree)
|
|
/// Warnings are emitted in cases where code passed to Tvix exhibits
/// problems that the user could address.
#[derive(Debug)]
pub enum WarningKind {}
#[derive(Debug)]
pub struct EvalWarning {
pub node: rnix::SyntaxNode,
pub kind: WarningKind,
}
|