Sarcasm.Unparsing.FormatYielder.YieldIndentationRight C# (CSharp) Méthode

YieldIndentationRight() private méthode

private YieldIndentationRight ( UnparsableAst self, BlockIndentation blockIndentation ) : IEnumerable
self UnparsableAst
blockIndentation BlockIndentation
Résultat IEnumerable
        private IEnumerable<UtokenBase> YieldIndentationRight(UnparsableAst self, BlockIndentation blockIndentation)
        {
#if DEBUG
            BlockIndentation originalBlockIndentation = blockIndentation;
#endif
            var utokens = YieldIndentationRight(self, ref blockIndentation);
#if DEBUG
            Debug.Assert(object.ReferenceEquals(blockIndentation, originalBlockIndentation), "unwanted change of blockIndentationParameter reference in YieldIndentationRight");
#endif
            return utokens;
        }