6 references to CallSiteAnnotation
Microsoft.CodeAnalysis.CSharp.Features (3)
ExtractMethod\CSharpMethodExtractor.CSharpCodeGenerator.ExpressionCodeGenerator.cs (1)
138
var callSignature = CreateCallSignature().WithAdditionalAnnotations(
CallSiteAnnotation
);
ExtractMethod\CSharpMethodExtractor.CSharpCodeGenerator.MultipleStatementsCodeGenerator.cs (1)
89
return Task.FromResult<SyntaxNode>(statement.WithAdditionalAnnotations(
CallSiteAnnotation
));
ExtractMethod\CSharpMethodExtractor.CSharpCodeGenerator.SingleStatementCodeGenerator.cs (1)
50
return Task.FromResult<SyntaxNode>(statement.WithAdditionalAnnotations(
CallSiteAnnotation
));
Microsoft.CodeAnalysis.Features (3)
ExtractMethod\MethodExtractor.CodeGenerator.cs (2)
325
return statements.Concat(declarationStatement.WithAdditionalAnnotations(
CallSiteAnnotation
));
329
CreateAssignmentExpressionStatement(variables, CreateCallSignature()).WithAdditionalAnnotations(
CallSiteAnnotation
));
ExtractMethod\MethodExtractor.TriviaResult.cs (1)
39
var callsiteAnnotation =
CallSiteAnnotation
;