pub enum StatementLoweringFlowError {
Failed(DiagnosticAdded),
End(BlockScopeEnd),
}
Expand description
Cases where the flow of lowering a statement should halt.
Variants§
Failed(DiagnosticAdded)
Computation failure. A corresponding diagnostic should be emitted.
End(BlockScopeEnd)
The block should end after this statement.
Trait Implementations§
source§impl From<LoweringFlowError> for StatementLoweringFlowError
impl From<LoweringFlowError> for StatementLoweringFlowError
source§fn from(err: LoweringFlowError) -> Self
fn from(err: LoweringFlowError) -> Self
Converts to this type from the input type.