You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you would try to visit LambdaExpression trying to pass constant as replacement then visitor would try to replace lambda parameter with constant and that would probably trigger an exception. So Those should not be Visitors.
So if you pass LambdaExpression (x, y) => x + y as an input and x -> k, y -> 3 as replacements then it would try to do this: (k, 3) => k + 3 which would probably cause exception.
The text was updated successfully, but these errors were encountered:
If you would try to visit LambdaExpression trying to pass constant as replacement then visitor would try to replace lambda parameter with constant and that would probably trigger an exception. So Those should not be Visitors.
So if you pass LambdaExpression
(x, y) => x + y
as an input andx -> k
,y -> 3
as replacements then it would try to do this:(k, 3) => k + 3
which would probably cause exception.The text was updated successfully, but these errors were encountered: