1 override of DescendantTokensIgnoringLambdaBodies
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
1456internal override Func<SyntaxNode, IEnumerable<SyntaxToken>> DescendantTokensIgnoringLambdaBodies
4 references to DescendantTokensIgnoringLambdaBodies
Microsoft.CodeAnalysis.Features (4)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (4)
1281var oldTokens = oldMemberBody?.GetUserCodeTokens(DescendantTokensIgnoringLambdaBodies) ?? []; 1282var newTokens = newMemberBody?.GetUserCodeTokens(DescendantTokensIgnoringLambdaBodies) ?? []; 6693var oldTokens = DescendantTokensIgnoringLambdaBodies(oldNode); 6694var newTokens = DescendantTokensIgnoringLambdaBodies(newNode);