1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
mod analysis;
pub use self::analysis::*;

mod usage;
pub use self::usage::*;

mod navigator;
pub use self::navigator::*;

mod types;
pub use self::types::*;

mod type_assignability;
pub use self::type_assignability::*;

mod checker;
pub use self::checker::*;

mod relevance;
pub use self::relevance::*;

pub mod checkers;

#[cfg(debug_assertions)]
use crate::*;

#[cfg(debug_assertions)]
use std::time::{Duration, Instant};

#[cfg(debug_assertions)]
const CACHE_CANDIDATE_WARNING_LIMIT: Duration = Duration::from_millis(10);

#[allow(unused_variables)]
fn cache_candidate<T, F: FnOnce() -> T>(name: &str, f: F) -> T {
    #[cfg(debug_assertions)]
    {
        let now = Instant::now();
        let result = f();
        if now.elapsed() > CACHE_CANDIDATE_WARNING_LIMIT {
            warn!("Cache candidate {:?} took {:?}.", name, now.elapsed());
        }
        result
    }

    #[cfg(not(debug_assertions))]
    {
        f()
    }
}