refactor(transformer/tagged-template): merge functions#18030
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 PR refactors the tagged template transform by merging two small functions into one. The transform_tagged_template_impl function has been inlined into transform_tagged_template, simplifying the code structure without changing behavior.
Changes:
- Merged
transform_tagged_template_implintotransform_tagged_template
💡 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
|
Follow-on after #15834. Pure refactor. Merge 2 small functions. The separation was only required previously due to inlining `transform_tagged_template`, but we don't do that any more.
40fa539 to
651abb9
Compare

Follow-on after #15834. Pure refactor. Merge 2 small functions. The separation was only required previously due to inlining
transform_tagged_template, but we don't do that any more.