Skip to content

Commit 5e08fc9

Browse files
committed
Make WalkOrder and WalkResult public
1 parent fb0ace7 commit 5e08fc9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

melior/src/ir/operation.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ mod result;
77

88
pub use self::{
99
builder::OperationBuilder,
10-
operation_like::{OperationLike, OperationMutLike},
10+
operation_like::{OperationLike, OperationMutLike, WalkOrder, WalkResult},
1111
printing_flags::OperationPrintingFlags,
1212
result::OperationResult,
1313
};
1414
use crate::{
15+
Error,
1516
context::Context,
1617
utility::{print_callback, print_string_callback},
17-
Error,
1818
};
1919
use core::{
2020
fmt,
2121
mem::{forget, transmute},
2222
};
2323
use mlir_sys::{
24-
mlirOperationClone, mlirOperationDestroy, mlirOperationEqual, mlirOperationPrint, MlirOperation,
24+
MlirOperation, mlirOperationClone, mlirOperationDestroy, mlirOperationEqual, mlirOperationPrint,
2525
};
2626
use std::{
2727
ffi::c_void,
@@ -303,8 +303,8 @@ mod tests {
303303
use crate::{
304304
context::Context,
305305
ir::{
306-
attribute::StringAttribute, Block, BlockLike, Identifier, Location, Region, RegionLike,
307-
Type, Value,
306+
Block, BlockLike, Identifier, Location, Region, RegionLike, Type, Value,
307+
attribute::StringAttribute,
308308
},
309309
test::create_test_context,
310310
};

0 commit comments

Comments
 (0)