Disclaimer

I'm pretty sure I'm missing something obvious, but even after reading official documentation I don't clearly understand how Roslyn create a syntax tree.

Example

Consider the following, simple code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace aopsample
{

    class UsbReadWriter
    {

        public bool ReadFromUsb()
        {
            return true;
        }

        public virtual bool WriteToUsb()
        {
            return true;
        }
    }
}

I get a SyntaxTree for this code and make something like this, very rough and simple, but I just need to understand.

 

  string[]lines =  System.IO.File.ReadAllLines(filename);      
  string tocompile = string.Join(string.Empty, lines);  

  SyntaxNode root = tree.GetRoot(new CancellationToken());
  foreach (SyntaxNode sn in root.ChildNodes())
  {
      if (sn.Kind == SyntaxKind.NamespaceDeclaration)
      {
         //I get a namespace, so it's Child node just will be class
         foreach (SyntaxNode sname in sn.ChildNodes())
         {
             if (sname.Kind == SyntaxKind.ClassDeclaration)
             {
                 //I get class, so it's  Children will be methods of the class        
                 foreach (SyntaxNode sclass in sname.ChildNodes()) // **{1}** 
                 {
                     if (sclass.Kind == SyntaxKind.MethodDeclaration) 
                     {

                     }
                 }
             }
        }

And it works pretty well.

Trouble

But, it's enough to add a comment to the ReadFromUsb() method, something like this

/// <summary>
/// Reads a data from Usb
/// </summary>
/// <returns></returns>
public bool ReadFromUsb()
{
    return true;
}

And ChildNodes() call on {1} marked line, for CLASS (???) returns 0.

Question

Why adding a comment to member function, resets the collection of parent CLASS children Syntax nodes ?

What am I missing ?

link|improve this question

As a side note, I think using LINQ would make zour code much clearer. And I think this applies generaly to selecting nodes in Roslyn. – svick Dec 30 '11 at 20:01
@svick: yes, ok. As I mantioned this code is just "fast and dirty". – Tigran Dec 30 '11 at 20:41
feedback

2 Answers

up vote 6 down vote accepted

Following a chat discussion, we determined that the problem was the the code to parse was being constructed with:

string[]lines = System.IO.File.ReadAllLines(filename); 
string tocompile = string.Join(string.Empty, lines);

Which puts all of the code onto a single line. Therefore everything after // becomes a comment. The solution is just to use Environment.NewLine as the join character, or use ReadAllText instead of ReadAllLines.

link|improve this answer
Thx! Simply awesome. – Tigran Dec 30 '11 at 22:29
feedback

Since comments can appear anywhere at all in source code, they are not modeled as a ChildNode, which are reserved for true syntactic elements. Instead, they are considered SyntaxTrivia. In your example, you should be able to look at the LeadingTrivia of the method and see the comment.

Additionally, since this is an XML doc comment which may have interesting structure of it's own, that will be modeled as it's own little tree that you can get with the GetStructure() method of the SyntaxTrivia.

link|improve this answer
Ok, but the question is not: how can I find the comments among childs, but why adding the new comment affects (apparently) the syntax tree structure. In fact, considering, that comments like, for example empty spaces, preprocessor dirrectives make not part of syntax tree strucutre, why should add/remove of them affect in any way childrens of the parent SyntaxNode ? – Tigran Dec 30 '11 at 21:35
Every edit you make to a file makes it into a different tree. In Roslyn SyntaxTree and SyntaxNode objects are immutable and fully representational. Once constructed they never change, and they model every bit of text in the file. That means that if you make a change to the code, you will get a different tree back every time, because it's ChildNodes will have different values for their Span properties. – Kevin Pilch-Bisson Dec 30 '11 at 21:41
Note that if you are editing in Visual Studio, we use an incremental parsing strategy such that we actually share most of the internal storage of the tree between parses, it's only a thin layer of wrapper objects that are created on access that are actually new each time. The whitepaper does a good job explaining the "re-spining" process that we use here. – Kevin Pilch-Bisson Dec 30 '11 at 21:42
But I rebuild it every time, naturally. When I change a source file, I stop and rebuild my program, so, in my understanding, I reconstruct a SyntaxTree from a "new" file. – Tigran Dec 30 '11 at 21:43
How are you adding the comment? Are you doing it programmatically? If so, and you're using something like SyntaxNode.Replace, you'll need to keep the return value and look in it's tree to see the changed nodes. – Kevin Pilch-Bisson Dec 30 '11 at 21:44
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.