9 lines
239 B
Rust
9 lines
239 B
Rust
use crate::mir::loop_pattern_detection::LoopPatternKind;
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
pub(in crate::mir::builder) struct PlannerContext {
|
|
pub pattern_kind: Option<LoopPatternKind>,
|
|
pub in_static_box: bool,
|
|
pub debug: bool,
|
|
}
|