Example #1
0
    void VisitLocalDeclarationStatement(LocalDeclarationStatementSyntax n)
    {
        // \todo do we need to handle this is a sequence of InitializedName objects?
        WriteLine(n.Kind() + " " + n.GetType() + "  #" + GetUid(n));

        TraverseChildren(n);
    }