runmat-mir 0.5.0

Mid-level IR and analysis scaffolding for RunMat
Documentation
1
2
3
4
5
6
7
8
9
10
use runmat_hir::{AsyncValueFact, ShapeFact, TypeFact, ValueFlowFact};
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct MirLocalFact {
    pub ty: TypeFact,
    pub shape: ShapeFact,
    pub value_flow: ValueFlowFact,
    pub async_value: Option<AsyncValueFact>,
}