Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ internal SyntaxValueProvider(
/// </summary>
/// <typeparam name="T">The type of the value the syntax node is transformed into</typeparam>
/// <param name="predicate">A function that determines if the given <see cref="SyntaxNode"/> should be transformed</param>
/// <param name="transform">A function that performs the transform, when <paramref name="predicate"/>returns <c>true</c> for a given node</param>
/// <param name="transform">A function that performs the transform, when <paramref name="predicate"/> returns <c>true</c> for a given node</param>
/// <returns>An <see cref="IncrementalValueProvider{T}"/> that provides the results of the transformation</returns>
public IncrementalValuesProvider<T> CreateSyntaxProvider<T>(Func<SyntaxNode, CancellationToken, bool> predicate, Func<GeneratorSyntaxContext, CancellationToken, T> transform)
{
Expand Down