86 lines
2.0 KiB
Rust
86 lines
2.0 KiB
Rust
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<TerminalIdentifier>),
|
|
WithMintypmax(Box<DelayedDataWithMintypmax>),
|
|
}
|
|
|
|
#[derive(Clone, Debug, PartialEq, Node)]
|
|
pub struct DelayedDataWithMintypmax {
|
|
pub nodes: (TerminalIdentifier, Bracket<ConstantMintypmaxExpression>),
|
|
}
|
|
|
|
#[derive(Clone, Debug, PartialEq, Node)]
|
|
pub enum DelayedReference {
|
|
TerminalIdentifier(Box<TerminalIdentifier>),
|
|
WithMintypmax(Box<DelayedReferenceWithMintypmax>),
|
|
}
|
|
|
|
#[derive(Clone, Debug, PartialEq, Node)]
|
|
pub struct DelayedReferenceWithMintypmax {
|
|
pub nodes: (TerminalIdentifier, Bracket<ConstantMintypmaxExpression>),
|
|
}
|
|
|
|
#[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,),
|
|
}
|