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
Fix let? unwrap to use actual variable names instead of hardcoded ones
When using `let? Some(myVar) = ...`, the variable name was hardcoded as "x"
instead of using the actual pattern variable name "myVar".
This fix extracts the variable name from the pattern and uses it in the
early return cases, ensuring proper variable propagation and avoiding
unnecessary runtime allocations.
Fixes#8085
Signed-Off-By: [Huijung Yoon] <[markup3604@gmail.com]>
0 commit comments