AvalonStudio.TextEditor.Document.TextSourceVersionProvider.Version.GetForwardChanges C# (CSharp) Method

GetForwardChanges() private method

private GetForwardChanges ( System.Version other ) : IEnumerable
other System.Version
return IEnumerable
			private IEnumerable<TextChangeEventArgs> GetForwardChanges(Version other)
			{
				// Return changes from this(inclusive) to other(exclusive).
				for (var node = this; node != other; node = node.next)
				{
					yield return node.change;
				}
			}
		}