Skip to content

Commit 3816629

Browse files
authored
Make WalkOrder and WalkResult public (#753)
Hi, this PR fixes a minor visibility issue; the `WalkOrder` and `WalkResult` enums are used in the `OperationLike::walk` method. However, we cannot use that method from our own crates since those two enums are not public and thus we cannot construct them.
1 parent fb0ace7 commit 3816629

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

melior/src/ir/operation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ 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
};

0 commit comments

Comments
 (0)