소스 검색

Further reducing the list of operators to port.

Bart De Smet 8 년 전
부모
커밋
6b1c930ad0
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      AsyncRx.NET/ApiCompare/Program.cs

+ 9 - 0
AsyncRx.NET/ApiCompare/Program.cs

@@ -26,6 +26,15 @@ namespace ApiCompare
                 "LastOrDefaultAsync",    // Renamed to drop the Async suffix.
                 "SingleAsync",           // Renamed to drop the Async suffix.
                 "SingleOrDefaultAsync",  // Renamed to drop the Async suffix.
+
+                "And",   // Postponing patterns.
+                "Then",  // Postponing patterns.
+                "When",  // Postponing patterns.
+
+                "If",       // Postponing imperative operators.
+                "DoWhile",  // Postponing imperative operators.
+                "Case",     // Postponing imperative operators.
+                "For",      // Postponing imperative operators.
             };
 
             var missing = observable.Except(exclude).Except(asyncObservable).OrderBy(m => m);