Get all descendants in Depth-First-Search order of the node. Note that this method returns the node itself (last).
public static IEnumerable<SyntaxNodeBase> Descendants(this SyntaxNode node, bool includeTokensCommentsAndWhitespaces = false)
The node to collect all descendants
true to include tokens, comments and whitespaces.