- Node::dumpTokens was never used.
- ::dumpTokens(llvm::raw_ostream, ArrayRef<syntax::Token>, const SourceManager &SM) was used twice, once by Node::dumpTokens. Additionally it always received as parameter a syntax::Token * pointing to one token only, instead of an ArrayRef
I removed the first and inlined a simplified version of the second in its only caller.
clang-tidy: warning: 'auto *Token' can be declared as 'const auto *Token' [llvm-qualified-auto]
not useful