internal static SyntaxNode AddAnnotations(SyntaxNode node, out int count)
 {
     var rewriter = new VisualBasicPrivateFieldAnnotationRewriter();
     var newNode = rewriter.Visit(node);
     count = rewriter._count;
     return newNode;
 }
예제 #2
0
            internal static SyntaxNode AddAnnotations(SyntaxNode node, out int count)
            {
                var rewriter = new VisualBasicPrivateFieldAnnotationRewriter();
                var newNode  = rewriter.Visit(node);

                count = rewriter._count;
                return(newNode);
            }
예제 #3
0
 protected override SyntaxNode AddPrivateFieldAnnotations(SyntaxNode syntaxNode, out int count)
 {
     return(VisualBasicPrivateFieldAnnotationRewriter.AddAnnotations(syntaxNode, out count));
 }