- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
feat: Introduce AttributeAnalysis
#7909
Conversation
@keradus before you comment something like "I don't like stuff without actual usage" - this is for #7395 and #7880 as a common mechanism for achieving 2 separate needs. @kubawerlos please take a look too, feedback about whether it's possible to build your change on top of this is really welcome 🙂. |
I am wondering if normalisation of FQNs is a responsibility of this analyzer, or not. Imagine: <?php
namespace Foo;
use Bar\AB;
#[
AB\Baz(prop: \'baz\'),
\A\B\Qux(prop: new P\R()),
Corge,
]
function foo() {}
right now new AttributeAnalysis(2, 39, [
['start' => 3, 'end' => 12, 'name' => 'AB\\Baz'],
['start' => 14, 'end' => 32, 'name' => '\\A\\B\\Qux'],
['start' => 34, 'end' => 35, 'name' => 'Corge']
]) and we need to decide if:
Personally I think it's out of the scope of this analyzer, as it does not have the context of a namespace it collects attributes in, and even if it's technically possible to determine it, it rather feels more natural if attributes' symbols are returned as-is. From fixers' point of view (e.g. Just thinking out loud, would like to hear your opinion too @HypeMC @kubawerlos . |
@Wirone Good question. I was wondering about that myself. I think it comes down to how often this feature will be needed, which I admit is hard to know in advance. So far, the only feature that needs this is the |
I believe that #7880 requires FQCN, but I still think that analyzer should return symbols as-is, and FQCN resolution should be done in higher layer, which uses the analyzer. If fixer uses attribute analyzer and needs to operate on FQCNs, most probably it already has the logic for collecting imported symbols in current namespace. But as you said, it's hard to tell now, fortunately we can add resolved name later if needed without BC break 🙂. |
yield [ | ||
'<?php | ||
/** | ||
* Start docblock |
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 PHPDoc is not part of the first AttributeAnalysis
, while 2 PHPDocs are part of the attributes they precede, is that expected behaviour?
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.
Yes, this is intentional. There's really no way to know whether a certain comment or docblock belongs to the attribute or to the entire method. Since it's more common to add a docblock for a method at the beginning, before any attributes, while adding docblocks or comments between attributes isn't, this approach made the most sense to me.
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.
Thanks @kubawerlos for the review, few minor additions from my side 🙂.
5e35d26
to
04b5f50
Compare
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.
@kubawerlos do you have any more doubts?
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.
Hah, one minor thing to improve 😅.
7cd0a1a
to
89483cd
Compare
Thank you very much @HypeMC 🍻! |
Extracted from #7395