mirror of
https://github.com/astral-sh/ruff
synced 2026-01-10 16:15:19 -05:00
8 lines
205 B
Rust
8 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,
|
|
}
|