luaur_analysis/records/
constraint_block.rs1use crate::type_aliases::constraint_block_target::ConstraintBlockTarget;
2
3#[derive(Debug, Clone)]
4pub struct ConstraintBlock {
5 pub(crate) target: ConstraintBlockTarget,
6 pub(crate) stringification: alloc::string::String,
7}