-
Notifications
You must be signed in to change notification settings - Fork 1.1k
fix #9894: clean ownership when destructing lambda-expressions #10132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello, and thank you for opening this PR! 🎉
All contributors have signed the CLA, thank you! ❤️
Commit Messages
We want to keep history, but for that to actually be useful we have
some rules on how to format our commit messages (relevant xkcd).
Please stick to these guidelines for commit messages:
- Separate subject from body with a blank line
- When fixing an issue, start your commit message with
Fix #<ISSUE-NBR>:
- Limit the subject line to 72 characters
- Capitalize the subject line
- Do not end the subject line with a period
- Use the imperative mood in the subject line ("Add" instead of "Added")
- Wrap the body at 80 characters
- Use the body to explain what and why vs. how
adapted from https://chris.beams.io/posts/git-commit
Have an awesome day! ☀️
@@ -745,7 +746,9 @@ class QuoteContextImpl private (ctx: Context) extends QuoteContext: | |||
def unapply(tree: Block): Option[(List[ValDef], Term)] = tree match { | |||
case Block((ddef @ DefDef(_, _, params :: Nil, _, Some(body))) :: Nil, Closure(meth, _)) | |||
if ddef.symbol == meth.symbol => | |||
Some((params, body)) | |||
val cleanParams = params.map(_.changeOwner(meth.symbol,ctx.owner)) | |||
val cleanBody = body.changeOwner(meth.symbol,ctx.owner) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We cannot rely on this body being used inside ctx.owner
. We need to change adapt it when we construct the Lambda
. We have some logic that knows how to do this. I created an alternative fix that does just that in #10142.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fix was helped me understand the source of the issue. Thank you.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, thanks
When destructing lambda-expression, cleanup ownership of its body to allow reusing body in the caller context.