2 overrides of Visit
Microsoft.CodeAnalysis.CSharp (2)
Binder\BinderFactory.BinderFactoryVisitor.cs (1)
88
public override Binder
Visit
(SyntaxNode node)
Syntax\CSharpSyntaxRewriter.cs (1)
34
public override SyntaxNode?
Visit
(SyntaxNode? node)
16 references to Visit
Microsoft.CodeAnalysis.CSharp (4)
Declarations\DeclarationTreeBuilder.cs (4)
45
return (RootSingleNamespaceDeclaration)builder.
Visit
(syntaxTree.GetRoot());
75
SingleNamespaceOrTypeDeclaration namespaceOrType =
Visit
(member);
190
var decl =
Visit
(member);
699
var typeDecl =
Visit
(member) as SingleTypeDeclaration;
Microsoft.CodeAnalysis.CSharp.CodeStyle (3)
ConvertSwitchStatementToExpressionDiagnosticAnalyzer.Analyzer.cs (3)
215
?
Visit
(nextStatement)
225
return
Visit
(section.Statements[0]);
270
=>
Visit
(node.Expression);
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (3)
ConvertSwitchStatementToExpressionCodeFixProvider.Rewriter.cs (3)
209
var result =
Visit
(statements[0]);
236
var armExpression =
Visit
(nextStatement);
293
var result =
Visit
(node.Expression);
Microsoft.CodeAnalysis.CSharp.Features (6)
ConvertSwitchStatementToExpressionCodeFixProvider.Rewriter.cs (3)
209
var result =
Visit
(statements[0]);
236
var armExpression =
Visit
(nextStatement);
293
var result =
Visit
(node.Expression);
ConvertSwitchStatementToExpressionDiagnosticAnalyzer.Analyzer.cs (3)
215
?
Visit
(nextStatement)
225
return
Visit
(section.Statements[0]);
270
=>
Visit
(node.Expression);