refractor

This commit is contained in:
z78078 2022-07-04 18:05:40 +08:00
parent af99915ead
commit 35d81f6fde
1 changed files with 1 additions and 3 deletions

View File

@ -31,6 +31,7 @@ use std::sync::{
Arc,
};
use std::thread;
use lazy_static::lazy_static;
pub mod concrete_type;
pub mod expr;
@ -52,9 +53,6 @@ pub struct StaticValueStore {
pub type VarValue<'ctx> = (PointerValue<'ctx>, Option<Arc<dyn StaticValue + Send + Sync>>, i64);
use lazy_static::lazy_static;
lazy_static!(
// HACK: The Mutex is a work-around for issue
// https://git.m-labs.hk/M-Labs/nac3/issues/275