[ExpressionLanguage] Add comment support to expression language#54978
Merged
fabpot merged 1 commit intosymfony:7.2from Jun 25, 2024
Merged
[ExpressionLanguage] Add comment support to expression language#54978fabpot merged 1 commit intosymfony:7.2from
fabpot merged 1 commit intosymfony:7.2from
Conversation
|
Hey! Thanks for your PR. You are targeting branch "7.1" but it seems your PR description refers to branch "7.2". Cheers! Carsonbot |
GromNaN
reviewed
May 17, 2024
Member
GromNaN
left a comment
There was a problem hiding this comment.
This feature is useful when used with user input where it is not otherwise possible to add comments in the code.
I think you could add tests on expressions like /* /* comment */ and /* comment */ */ to ensure the regex catch the right comment separators.
d5ce011 to
c762141
Compare
Contributor
Author
|
Added some extra tests + changelog (too late for 7.1 as I understand) |
alamirault
approved these changes
May 20, 2024
c762141 to
d50ca10
Compare
nicolas-grekas
approved these changes
Jun 25, 2024
fabpot
approved these changes
Jun 25, 2024
1fa8629 to
0f8dee7
Compare
Member
|
Thank you @valtzu. |
Merged
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.
When expression language expressions are provided by the user, it would be really helpful if we could include comments in the expression. Many times the user will write something like
which in my opinion, would be much better with a comment
so that the next person reading the expression knows what the magical 123 is.
The implementation is quite simple, given it's ok to strip the comments from AST & the compiled version.
Why
/*&*/This seems to be the most common way among different programming languages, including JS, C#, Go, C, PHP, Java, Rust – also in business scenarios you often times want multi-line comments, for which this syntax usually stands for. Also, this makes it possible to use comments in the middle of single-line expressions.
At the moment, unlike multi-line comments in PHP, we always require closing
*/.