// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using System.Linq;
using Roslyn.Utilities;
namespace Microsoft.CodeAnalysis.Shared.Extensions
{
internal static class SyntaxNodeOrTokenExtensions
{
public static IEnumerable<SyntaxNodeOrToken> DepthFirstTraversal(this SyntaxNodeOrToken node)
{
var stack = new Stack<SyntaxNodeOrToken>();
stack.Push(node);
while (!stack.IsEmpty())
{
var current = stack.Pop();
yield return current;
if (current.IsNode)
{
foreach (var child in current.ChildNodesAndTokens().Reverse())
{
stack.Push(child);
}
}
}
}
public static SyntaxTrivia[] GetTrivia(params SyntaxNodeOrToken[] nodesOrTokens)
=> nodesOrTokens.SelectMany(nodeOrToken => nodeOrToken.GetLeadingTrivia().Concat(nodeOrToken.GetTrailingTrivia())).ToArray();
}
}
|