protospec_build/ast/declaration/
const_declaration.rs1use super::*;
2
3#[derive(Clone, Serialize, Deserialize)]
4pub struct ConstDeclaration {
5 pub name: Ident,
6 pub type_: Type,
7 pub value: Expression,
8 pub span: Span,
9}
10impl_node!(ConstDeclaration);