Get all SyntaxToken and SyntaxTrivia in Depth-First-Search order of the node.
public static IEnumerable<SyntaxNodeBase> Tokens(this SyntaxNode node, bool includeCommentsAndWhitespaces = true)
The node to collect all tokens from
true to include comments and whitespaces.