ruff/crates/ruff_python_semantic/src/context.rs
2023-05-24 15:12:38 +00:00

7 lines
205 B
Rust

#[derive(Debug, Copy, Clone, is_macro::Is)]
pub enum ExecutionContext {
/// The reference occurs in a runtime context.
Runtime,
/// The reference occurs in a typing-only context.
Typing,
}