Demoted
This commit is contained in:
parent
0f031109a6
commit
0edcafad2a
@ -5,6 +5,7 @@
|
|||||||
mod addresses;
|
mod addresses;
|
||||||
mod context;
|
mod context;
|
||||||
mod dectx;
|
mod dectx;
|
||||||
|
mod demoted;
|
||||||
mod diagnostic;
|
mod diagnostic;
|
||||||
mod hashing;
|
mod hashing;
|
||||||
mod inctx;
|
mod inctx;
|
||||||
@ -25,6 +26,7 @@ use crate::func::*;
|
|||||||
use self::addresses::{Addresses, InliningAddresses};
|
use self::addresses::{Addresses, InliningAddresses};
|
||||||
pub use self::context::Context;
|
pub use self::context::Context;
|
||||||
use self::dectx::{DeCtx, DeCtxT};
|
use self::dectx::{DeCtx, DeCtxT};
|
||||||
|
pub use self::demoted::Demoted;
|
||||||
pub use self::diagnostic::Diagnostic;
|
pub use self::diagnostic::Diagnostic;
|
||||||
pub use self::hashing::{Hash, HASH_SIZE, HASH_ZEROS};
|
pub use self::hashing::{Hash, HASH_SIZE, HASH_ZEROS};
|
||||||
pub use self::inctx::InCtx;
|
pub use self::inctx::InCtx;
|
||||||
|
3
src/rcore/demoted.rs
Normal file
3
src/rcore/demoted.rs
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
use super::*;
|
||||||
|
|
||||||
|
pub struct Demoted<'a: 'c, 'c, Ctx: Context<'a>>(pub(super) &'c mut dyn DeCtx<'a, Ctx>);
|
Loading…
Reference in New Issue
Block a user