Skip to content

Commit 846549e

Browse files
Make llil constructor public
1 parent 2e600b2 commit 846549e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

rust/src/low_level_il/expression.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,7 @@ where
9898
F: FunctionForm,
9999
R: ExpressionResultType,
100100
{
101-
pub(crate) fn new(
102-
function: &'func LowLevelILFunction<M, F>,
103-
index: LowLevelExpressionIndex,
104-
) -> Self {
101+
pub fn new(function: &'func LowLevelILFunction<M, F>, index: LowLevelExpressionIndex) -> Self {
105102
// TODO: Validate expression here?
106103
Self {
107104
function,

0 commit comments

Comments
 (0)