public static string CallerStackDump(this SyntaxNode node)
        {
            var stack = node.CallerStack();

            return(string.Join(Environment.NewLine, stack.Select(s => $" at {s}")));
        }