-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Support ForInvocationWithName
in incremental source generators
#77887
Comments
cc: @CyrusNajmabadi I couldn't find an issue in the backlog proposing this API so I've gone ahead and created this here. Feel free to close this if one already exists. |
I'm wary about this. Especially as the FQN for a method is exceedingl complex (and i don't know if we actually have a parser for this). We could instead of Have something like |
Yep, I share your reservation here but I overindexed on the existing API in the proposal.
That makes sense. So the invocation would become something like this: context.ForInvocation("Microsoft.Extensions.DependencyInjection.OpenApiServiceCollectionExtensions", "AddOpenApi", ..., ...); I've renamed it to |
Yes. That seems pretty reasonable. |
ForInvocationWithMetadataName
in incremental source generatorsForInvocationWithName
in incremental source generators
looks good though I am confused by the struct named |
Yes, it was a copy pasta issue. Fixed. |
Background and Motivation
Many source generators in the ASP.NET Core ecosystem use invocations of minimal API's
Map
method calls as entrypoints for type discovery that eventually feeds into the source generator. Some generators also look for invocations of methods that they will intercept with source generated implementations. Currently, we rely on using theSyntaxProvider.CreateSyntaxProvider
API to discover the desired invocations and intercept them.Given the frequency of this pattern and its usability in conjunction with interceptors, we should consider an API ala
ForAttributeWithMetadata
name for them.Proposed API
Usage Examples
Alternative Designs
GeneratorAttributeSyntaxContext
. We may consider an abstract class + concrete implementation pattern for this if we anticipate keying on more shapes.The text was updated successfully, but these errors were encountered: