mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-20 17:19:59 +00:00
7 lines
205 B
Rust
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,
|
|
}
|