fix: allow passing any expression as custom i18n instance#1475
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
size-limit report 📦
|
Collaborator
|
@janicduplessis thanks for you contribution. We have an active development in |
6c6e427 to
069c2fa
Compare
Contributor
Author
|
@thekip Ok, I rebased against the next branch |
timofei-iatsenko
approved these changes
Mar 1, 2023
andrii-bodnar
approved these changes
Mar 2, 2023
Contributor
|
@thekip do we need the same fix for the SWC plugin? |
Collaborator
|
I'm not sure. We need to write the same test case and check how it behaves. Extra point: we need somehow to write a universal test fixtures for both SWC and Babel transform, to be always sure that they behave the same |
timofei-iatsenko
pushed a commit
to lingui/swc-plugin
that referenced
this pull request
Mar 8, 2023
timofei-iatsenko
pushed a commit
to lingui/swc-plugin
that referenced
this pull request
Mar 8, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Currently passing a custom i18n instance to the
tmacro only supports passing identifier, although any expression should be valid.For example this currently crashes during extraction:
This changes the check from
isIdentifiertoisExpressionso we can support function calls or member properties.Types of changes
Checklist