Exemplo n.º 1
0
        public override void VisitIdentifierName(IdentifierNameSyntax node)
        {
            if (node.IsKind(SyntaxKind.IdentifierName) && TrySimplify(node))
            {
                // found a match. report it and stop processing.
                return;
            }

            // descend further.
            DefaultVisit(node);
        }