Sarcasm.Unparsing.FormatYielder.GetLeftsFromTopToBottom C# (CSharp) 메소드

GetLeftsFromTopToBottom() 개인적인 정적인 메소드

/// If topLeft is non-calculated. ///
private static GetLeftsFromTopToBottom ( UnparsableAst self, FormatYielder formatYielder = null ) : IEnumerable
self UnparsableAst
formatYielder FormatYielder
리턴 IEnumerable
        private static IEnumerable<UnparsableAst> GetLeftsFromTopToBottom(UnparsableAst self, FormatYielder formatYielder = null)
        {
            UnparsableAst topAncestorForLeft = GetTopAncestorForLeft(self, formatYielder);

            return topAncestorForLeft != null
                ? Util.RecurseStopBeforeNull(topAncestorForLeft.LeftSibling, current => current.RightMostChild)
                : Enumerable.Empty<UnparsableAst>();
        }