zhc_ir 0.8.3

Graph-based intermediate representation framework with dialect support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{
    Dialect,
    visualization::layoutlang::{LayoutInstructionSet, LayoutTypeSystem},
};

#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct LayoutDialect;

impl Dialect for LayoutDialect {
    type TypeSystem = LayoutTypeSystem;
    type InstructionSet = LayoutInstructionSet;
}