refactor(semantic): move code into if block#18294
Conversation
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
There was a problem hiding this comment.
Pull request overview
This pull request performs a pure refactor to improve code organization by moving the includes variable declaration into the if let Some(ident) block where it's actually used.
Changes:
- Move
includesvariable calculation from outside to inside theif let Some(ident)block in theFunctionbinder implementation
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
CodSpeed Performance ReportMerging this PR will not alter performanceComparing Summary
Footnotes
|
Merge activity
|
a98ef27 to
948e0a7
Compare
7853545 to
3fe7a96
Compare
948e0a7 to
6b600c4
Compare
3fe7a96 to
7abffcc
Compare

Pure refactor. Move calculating
includesinto theifblock, since it's only used in that block.