|
@@ -4,6 +4,7 @@
|
|
|
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
+using System.Diagnostics;
|
|
|
using System.Linq;
|
|
|
using System.Threading;
|
|
|
using System.Threading.Tasks;
|
|
@@ -52,6 +53,8 @@ namespace System.Linq
|
|
|
|
|
|
public OnErrorResumeNextAsyncIterator(IEnumerable<IAsyncEnumerable<TSource>> sources)
|
|
|
{
|
|
|
+ Debug.Assert(sources != null);
|
|
|
+
|
|
|
this.sources = sources;
|
|
|
}
|
|
|
|