use crate::*; // ----------------------------------------------------------------------------- #[derive(Clone, Debug, PartialEq, Node)] pub struct TimecheckCondition { pub nodes: (MintypmaxExpression,), } #[derive(Clone, Debug, PartialEq, Node)] pub struct ControlledReferenceEvent { pub nodes: (ControlledTimingCheckEvent,), } #[derive(Clone, Debug, PartialEq, Node)] pub struct DataEvent { pub nodes: (TimingCheckEvent,), } #[derive(Clone, Debug, PartialEq, Node)] pub enum DelayedData { TerminalIdentifier(Box), WithMintypmax(Box), } #[derive(Clone, Debug, PartialEq, Node)] pub struct DelayedDataWithMintypmax { pub nodes: (TerminalIdentifier, Bracket), } #[derive(Clone, Debug, PartialEq, Node)] pub enum DelayedReference { TerminalIdentifier(Box), WithMintypmax(Box), } #[derive(Clone, Debug, PartialEq, Node)] pub struct DelayedReferenceWithMintypmax { pub nodes: (TerminalIdentifier, Bracket), } #[derive(Clone, Debug, PartialEq, Node)] pub struct EndEdgeOffset { pub nodes: (MintypmaxExpression,), } #[derive(Clone, Debug, PartialEq, Node)] pub struct EventBasedFlag { pub nodes: (ConstantExpression,), } #[derive(Clone, Debug, PartialEq, Node)] pub struct Notifier { pub nodes: (VariableIdentifier,), } #[derive(Clone, Debug, PartialEq, Node)] pub struct ReferenceEvent { pub nodes: (TimingCheckEvent,), } #[derive(Clone, Debug, PartialEq, Node)] pub struct RemainActiveFlag { pub nodes: (ConstantMintypmaxExpression,), } #[derive(Clone, Debug, PartialEq, Node)] pub struct TimestampCondition { pub nodes: (MintypmaxExpression,), } #[derive(Clone, Debug, PartialEq, Node)] pub struct StartEdgeOffset { pub nodes: (MintypmaxExpression,), } #[derive(Clone, Debug, PartialEq, Node)] pub struct Threshold { pub nodes: (ConstantExpression,), } #[derive(Clone, Debug, PartialEq, Node)] pub struct TimingCheckLimit { pub nodes: (Expression,), }