moved Ownership to borrow

This commit is contained in:
J.Teeuwissen 2023-01-09 18:15:34 +01:00
parent a11d94aee2
commit b28b32cdc4
No known key found for this signature in database
GPG key ID: DB5F7A1ED8D478AD
8 changed files with 23 additions and 19 deletions

View file

@ -1,7 +1,7 @@
use crate::borrow::{ParamMap, BORROWED, OWNED};
use crate::borrow::{Ownership, ParamMap, BORROWED, OWNED};
use crate::ir::{
CallType, Expr, HigherOrderLowLevel, JoinPointId, ModifyRc, Ownership, Param, Proc, ProcLayout,
Stmt, UpdateModeIds,
CallType, Expr, HigherOrderLowLevel, JoinPointId, ModifyRc, Param, Proc, ProcLayout, Stmt,
UpdateModeIds,
};
use crate::layout::{Layout, STLayoutInterner};
use bumpalo::collections::Vec;