AstProgramInfo -> ProgramInfo

This commit is contained in:
2026-05-04 19:57:48 -06:00
parent 1536d43d97
commit e2c7985ef9

View File

@@ -314,12 +314,12 @@ pub fn apply(db: &dyn Database, ast: AstNode) -> Apply {
} }
/// A type alias for parse stage [Expr]. /// A type alias for parse stage [Expr].
pub type Expr = ir::Expr<AstProgramInfo>; pub type Expr = ir::Expr<ProgramInfo>;
/// Program information for IR at parse time. /// Program information for IR at parse time.
pub struct AstProgramInfo; pub struct ProgramInfo;
impl ir::ProgramInfo for AstProgramInfo { impl ir::ProgramInfo for ProgramInfo {
type SymbolLabel = Infallible; type SymbolLabel = Infallible;
type RelationLabel = Infallible; type RelationLabel = Infallible;
type AssumptionMeta = Infallible; type AssumptionMeta = Infallible;