Skip to content

Commit

Permalink
Update HomoIcon tool to reflect new repository structure and manual c…
Browse files Browse the repository at this point in the history
…ode changes (#537)
  • Loading branch information
quinmars authored and danielcweber committed Jun 1, 2018
1 parent f1cc53e commit 8ebfb49
Show file tree
Hide file tree
Showing 8 changed files with 1,759 additions and 1,762 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>uap10.0;netstandard2.0;net46</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net46;uap10.0</TargetFrameworks>
<Title>Reactive Extensions - Aliases</Title>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<PackageTags>Rx;Reactive;Extensions;Observable;LINQ;Events</PackageTags>
Expand Down
3,098 changes: 1,555 additions & 1,543 deletions Rx.NET/Source/src/System.Reactive/Linq/Qbservable.Generated.cs

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions Rx.NET/Source/src/System.Reactive/Linq/QbservableEx.Generated.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* WARNING: Auto-generated file (5/1/2015 21:21:20)
/*
* WARNING: Auto-generated file (05/28/2018 22:20:19)
* Run Rx's auto-homoiconizer tool to generate this file (in the HomoIcon directory).
*/

Expand Down Expand Up @@ -37,7 +37,7 @@ public static IQbservable<Unit> Create(this IQbservableProvider provider, Expres
throw new ArgumentNullException(nameof(provider));
if (iteratorMethod == null)
throw new ArgumentNullException(nameof(iteratorMethod));

return provider.CreateQuery<Unit>(
Expression.Call(
null,
Expand All @@ -52,7 +52,7 @@ public static IQbservable<Unit> Create(this IQbservableProvider provider, Expres
);
}
#endif

#if !STABLE
/// <summary>
/// Subscribes to each observable sequence returned by the iteratorMethod in sequence and returns the observable sequence of values sent to the observer given to the iteratorMethod.
Expand All @@ -70,7 +70,7 @@ public static IQbservable<TResult> Create<TResult>(this IQbservableProvider prov
throw new ArgumentNullException(nameof(provider));
if (iteratorMethod == null)
throw new ArgumentNullException(nameof(iteratorMethod));

return provider.CreateQuery<TResult>(
Expression.Call(
null,
Expand All @@ -85,7 +85,7 @@ public static IQbservable<TResult> Create<TResult>(this IQbservableProvider prov
);
}
#endif

#if !STABLE
/// <summary>
/// Expands an observable sequence by recursively invoking selector.
Expand All @@ -103,7 +103,7 @@ public static IQbservable<TSource> Expand<TSource>(this IQbservable<TSource> sou
throw new ArgumentNullException(nameof(source));
if (selector == null)
throw new ArgumentNullException(nameof(selector));

return source.Provider.CreateQuery<TSource>(
Expression.Call(
null,
Expand All @@ -118,7 +118,7 @@ public static IQbservable<TSource> Expand<TSource>(this IQbservable<TSource> sou
);
}
#endif

#if !STABLE
/// <summary>
/// Expands an observable sequence by recursively invoking selector, using the specified scheduler to enumerate the queue of obtained sequences.
Expand All @@ -139,7 +139,7 @@ public static IQbservable<TSource> Expand<TSource>(this IQbservable<TSource> sou
throw new ArgumentNullException(nameof(selector));
if (scheduler == null)
throw new ArgumentNullException(nameof(scheduler));

return source.Provider.CreateQuery<TSource>(
Expression.Call(
null,
Expand All @@ -155,7 +155,7 @@ public static IQbservable<TSource> Expand<TSource>(this IQbservable<TSource> sou
);
}
#endif

#if !STABLE
/// <summary>
/// Runs all specified observable sequences in parallel and collects their last elements.
Expand All @@ -173,7 +173,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
throw new ArgumentNullException(nameof(provider));
if (sources == null)
throw new ArgumentNullException(nameof(sources));

return provider.CreateQuery<TSource[]>(
Expression.Call(
null,
Expand All @@ -188,7 +188,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
);
}
#endif

#if !STABLE
/// <summary>
/// Runs all observable sequences in the enumerable sources sequence in parallel and collect their last elements.
Expand All @@ -206,7 +206,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
throw new ArgumentNullException(nameof(provider));
if (sources == null)
throw new ArgumentNullException(nameof(sources));

return provider.CreateQuery<TSource[]>(
Expression.Call(
null,
Expand All @@ -221,7 +221,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
);
}
#endif

#if !STABLE
/// <summary>
/// Runs two observable sequences in parallel and combines their last elements.
Expand All @@ -244,7 +244,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
throw new ArgumentNullException(nameof(second));
if (resultSelector == null)
throw new ArgumentNullException(nameof(resultSelector));

return first.Provider.CreateQuery<TResult>(
Expression.Call(
null,
Expand All @@ -260,7 +260,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
);
}
#endif

#if !STABLE
/// <summary>
/// Returns an observable sequence that is the result of invoking the selector on the source sequence, without sharing subscriptions.
Expand All @@ -280,7 +280,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
throw new ArgumentNullException(nameof(source));
if (selector == null)
throw new ArgumentNullException(nameof(selector));

return source.Provider.CreateQuery<TResult>(
Expression.Call(
null,
Expand All @@ -295,7 +295,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
);
}
#endif

#if !STABLE
/// <summary>
/// Comonadic bind operator.
Expand All @@ -307,7 +307,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
throw new ArgumentNullException(nameof(source));
if (selector == null)
throw new ArgumentNullException(nameof(selector));

return source.Provider.CreateQuery<TResult>(
Expression.Call(
null,
Expand All @@ -322,7 +322,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
);
}
#endif

#if !STABLE
/// <summary>
/// Comonadic bind operator.
Expand All @@ -336,7 +336,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
throw new ArgumentNullException(nameof(selector));
if (scheduler == null)
throw new ArgumentNullException(nameof(scheduler));

return source.Provider.CreateQuery<TResult>(
Expression.Call(
null,
Expand All @@ -352,7 +352,7 @@ public static IQbservable<TSource[]> ForkJoin<TSource>(this IQbservableProvider
);
}
#endif

}
}

Expand Down
Loading

0 comments on commit 8ebfb49

Please sign in to comment.