pub(super) mod allocations; pub(super) mod edits; pub(super) mod fixtures; pub(super) mod query_helpers; pub(super) mod random; pub(super) mod scope_sequence; use lazy_static::lazy_static; use std::{env, time, usize}; lazy_static! { pub static ref LOG_ENABLED: bool = env::var("TREE_SITTER_LOG").is_ok(); pub static ref LOG_GRAPH_ENABLED: bool = env::var("TREE_SITTER_LOG_GRAPHS").is_ok(); pub static ref LANGUAGE_FILTER: Option = env::var("TREE_SITTER_LANGUAGE").ok(); pub static ref EXAMPLE_FILTER: Option = env::var("TREE_SITTER_EXAMPLE").ok(); } lazy_static! { pub static ref START_SEED: usize = int_env_var("TREE_SITTER_SEED").unwrap_or_else(|| time::SystemTime::now() .duration_since(time::UNIX_EPOCH) .unwrap() .as_secs() as usize,); pub static ref EDIT_COUNT: usize = int_env_var("TREE_SITTER_EDITS").unwrap_or(3); pub static ref ITERATION_COUNT: usize = int_env_var("TREE_SITTER_ITERATIONS").unwrap_or(10); } fn int_env_var(name: &'static str) -> Option { env::var(name).ok().and_then(|e| e.parse().ok()) }