Skip to content

Commit

Permalink
Allow for recursive subject scope declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
glopesdev committed Jul 19, 2024
1 parent 297552e commit 9f65656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bonsai.Core/Expressions/InspectBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ methodCall.Arguments[0] is MethodCallExpression lazy &&
methodCall.Arguments.Count == 1 &&
methodCall.Arguments[0] is LambdaExpression lambda)
{
source = lambda.Body;
return GetInspectBuilder(lambda.Body);
}
else break;
}
Expand Down

0 comments on commit 9f65656

Please sign in to comment.